ソースを参照

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 {

読み込み中…
キャンセル
保存