Parcourir la source

Merge pull request #495 from WMXZ-EU/patch-1

Update DMAChannel.h
main
Paul Stoffregen il y a 4 ans
Parent
révision
4da51c16fd
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 6 ajouts et 0 suppressions
  1. +6
    -0
      teensy4/DMAChannel.h

+ 6
- 0
teensy4/DMAChannel.h Voir le fichier

@@ -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);
}

Chargement…
Annuler
Enregistrer