Quellcode durchsuchen

Merge pull request #518 from FrankBoesing/patch-1

Fix for https://github.com/PaulStoffregen/cores/issues/499
teensy4-core
Paul Stoffregen vor 4 Jahren
Ursprung
Commit
75405569b7
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      teensy4/interrupt.c

+ 1
- 1
teensy4/interrupt.c Datei anzeigen

@@ -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 {

Laden…
Abbrechen
Speichern