1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-07-28 18:03:45 +02:00

Merge pull request #42 from DCC-EX/feature/config

revert of timer.cpp
This commit is contained in:
Dex
2020-09-28 15:15:36 -04:00
committed by GitHub

View File

@@ -85,15 +85,10 @@ ISR(TIMER2_OVF_vect)
#include "ATMEGA4809/Timer.h"
Timer TimerA(1);
Timer TimerB(2);
Timer TimerA(0);
ISR(TIMER1_OVF_vect) {
ISR(TCA0_OVF_vect) {
TimerA.isrCallback();
}
ISR(TIMER2_OVF_vect) {
TimerB.isrCallback();
}
#endif