소스 검색

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

Update DMAChannel.h
main
Paul Stoffregen 4 년 전
부모
커밋
4da51c16fd
No account linked to committer's email address
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. +6
    -0
      teensy4/DMAChannel.h

+ 6
- 0
teensy4/DMAChannel.h 파일 보기

@@ -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…
취소
저장