Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
visus
/
teensy-core-4.1
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
Use DMA_NUM_CHANNELS for index if allocation fails
teensy4-core
PaulStoffregen
10 anos atrás
pai
8632eda964
commit
7f9688e5a3
1 arquivos alterados
com
1 adições
e
1 exclusões
Visão dividida
Mostrar estatísticas do Diff
+1
-1
teensy3/DMAChannel.cpp
+ 1
- 1
teensy3/DMAChannel.cpp
Ver arquivo
@@ -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
}
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar