瀏覽代碼

Merge pull request #518 from FrankBoesing/patch-1

Fix for https://github.com/PaulStoffregen/cores/issues/499
main
Paul Stoffregen 4 年之前
父節點
當前提交
75405569b7
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      teensy4/interrupt.c

+ 1
- 1
teensy4/interrupt.c 查看文件

@@ -109,7 +109,7 @@ void attachInterrupt(uint8_t pin, void (*function)(void), int mode)
gpio[EDGE_INDEX] |= mask;
} else {
gpio[EDGE_INDEX] &= ~mask;
if (index < 15) {
if (index < 16) {
uint32_t shift = index * 2;
gpio[ICR1_INDEX] = (gpio[ICR1_INDEX] & ~(3 << shift)) | (icr << shift);
} else {

Loading…
取消
儲存