Browse Source

Allow IntervalTimer to be used with SPI.usingInterrupt()

https://forum.pjrc.com/threads/32999-using-IntervalTimer-with-SPI-usingInterrupt%28%29
teensy4-core
PaulStoffregen 9 years ago
parent
commit
326cf24dec
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      teensy3/IntervalTimer.h

+ 10
- 0
teensy3/IntervalTimer.h View File

@@ -86,6 +86,16 @@ class IntervalTimer {
nvic_priority = n;
if (PIT_enabled) NVIC_SET_PRIORITY(IRQ_PIT_CH, n);
}
operator IRQ_NUMBER_t() {
if (PIT_enabled) {
#if defined(KINETISK)
return (IRQ_NUMBER_t)(IRQ_PIT_CH + PIT_id);
#elif defined(KINETISL)
return IRQ_PIT;
#endif
}
return (IRQ_NUMBER_t)NVIC_NUM_INTERRUPTS;
}
#if defined(KINETISK)
friend void pit0_isr();
friend void pit1_isr();

Loading…
Cancel
Save