1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 08:06:13 +01:00

Merge pull request #3 from DCC-EX/master

get upstream changes
This commit is contained in:
mstevetodd 2020-09-28 19:09:02 -04:00 committed by GitHub
commit 6e45b3a434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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