Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
visus
/
teensy-core-4.1
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Use DMA_NUM_CHANNELS for index if allocation fails
teensy4-core
PaulStoffregen
10 anni fa
parent
8632eda964
commit
7f9688e5a3
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
+1
-1
teensy3/DMAChannel.cpp
+ 1
- 1
teensy3/DMAChannel.cpp
Vedi File
@@ -17,7 +17,7 @@ void DMAChannel::init(void)
if (++ch >= DMA_NUM_CHANNELS) {
__enable_irq();
TCD = (TCD_t *)0;
channel =
16
;
channel =
DMA_NUM_CHANNELS
;
return; // no more channels available
// attempts to use this object will hardfault
}
Write
Preview
Loading…
Annulla
Salva