|
|
|
@ -168,8 +168,8 @@ static void initISR(timer16_Sequence_t timer) {
|
|
|
|
|
SBI(TIFR, OCF3A); // clear any pending interrupts;
|
|
|
|
|
SBI(ETIMSK, OCIE3A); // enable the output compare interrupt
|
|
|
|
|
#else
|
|
|
|
|
TIFR3 = _BV(OCF3A); // clear any pending interrupts;
|
|
|
|
|
TIMSK3 = _BV(OCIE3A) ; // enable the output compare interrupt
|
|
|
|
|
SBI(TIFR3, OCF3A); // clear any pending interrupts;
|
|
|
|
|
SBI(TIMSK3, OCIE3A); // enable the output compare interrupt
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef WIRING
|
|
|
|
|
timerAttach(TIMER3OUTCOMPAREA_INT, Timer3Service); // for Wiring platform only
|
|
|
|
@ -183,7 +183,7 @@ static void initISR(timer16_Sequence_t timer) {
|
|
|
|
|
TCCR4B = _BV(CS41); // set prescaler of 8
|
|
|
|
|
TCNT4 = 0; // clear the timer count
|
|
|
|
|
TIFR4 = _BV(OCF4A); // clear any pending interrupts;
|
|
|
|
|
TIMSK4 = _BV(OCIE4A) ; // enable the output compare interrupt
|
|
|
|
|
TIMSK4 = _BV(OCIE4A); // enable the output compare interrupt
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
@ -193,7 +193,7 @@ static void initISR(timer16_Sequence_t timer) {
|
|
|
|
|
TCCR5B = _BV(CS51); // set prescaler of 8
|
|
|
|
|
TCNT5 = 0; // clear the timer count
|
|
|
|
|
TIFR5 = _BV(OCF5A); // clear any pending interrupts;
|
|
|
|
|
TIMSK5 = _BV(OCIE5A) ; // enable the output compare interrupt
|
|
|
|
|
TIMSK5 = _BV(OCIE5A); // enable the output compare interrupt
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|