| 26 | // interrupt service routine that wraps a user defined function supplied by attachInterrupt |
| 27 | #if defined (__AVR_ATtiny85__) |
| 28 | ISR(TIMER1_COMPA_vect) |
| 29 | { |
| 30 | Timer1.isrCallback(); |
| 31 | } |
| 32 | #elif defined(__AVR__) |
| 33 | ISR(TIMER1_OVF_vect) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected