1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-12-24 21:21:24 +01:00

Remove extra timer that was already added

This commit is contained in:
dexslab 2020-12-09 11:39:34 -05:00
parent 7d888e9aa9
commit bdab5d0ff7
2 changed files with 2 additions and 12 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ Release/*
.pio/ .pio/
.vscode/ .vscode/
config.h config.h
.vscode/extensions.json

View File

@ -61,15 +61,4 @@ ISR(TIMER2_OVF_vect)
{ {
TimerB.isrCallback(); TimerB.isrCallback();
} }
#elif defined(ARDUINO_AVR_UNO_WIFI_REV2)
#include "ATMEGA4809/Timer.h"
Timer TimerA(0);
ISR(TCA0_OVF_vect) {
TimerA.isrCallback();
}
#endif #endif