Selaa lähdekoodia

Update DMAChannel.h

Allow specific interrupt level for DMA ISR.
main
WMXZ-EU 4 vuotta sitten
vanhempi
commit
7118ab94af
No account linked to committer's email address
1 muutettua tiedostoa jossa 6 lisäystä ja 0 poistoa
  1. +6
    -0
      teensy4/DMAChannel.h

+ 6
- 0
teensy4/DMAChannel.h Näytä tiedosto

@@ -535,6 +535,12 @@ public:
NVIC_ENABLE_IRQ(IRQ_DMA_CH0 + channel);
}

void attachInterrupt(void (*isr)(void), uint8_t prio) {
_VectorsRam[channel + IRQ_DMA_CH0 + 16] = isr;
NVIC_ENABLE_IRQ(IRQ_DMA_CH0 + channel);
NVIC_SET_PRIORITY(IRQ_DMA_CH0 + channel, prio);
}
void detachInterrupt(void) {
NVIC_DISABLE_IRQ(IRQ_DMA_CH0 + channel);
}

Loading…
Peruuta
Tallenna