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 IRQ_PRIORITY (not hard-coded number) in Serial3
teensy4-core
PaulStoffregen
10 anni fa
parent
486b200f22
commit
f2cecda077
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
+1
-1
teensy3/serial3.c
+ 1
- 1
teensy3/serial3.c
Vedi File
@@ -95,7 +95,7 @@ void serial3_begin(uint32_t divisor)
UART2_C1 = 0;
UART2_PFIFO = 0;
UART2_C2 = C2_TX_INACTIVE;
NVIC_SET_PRIORITY(IRQ_UART2_STATUS,
64
);
NVIC_SET_PRIORITY(IRQ_UART2_STATUS,
IRQ_PRIORITY
);
NVIC_ENABLE_IRQ(IRQ_UART2_STATUS);
}
Write
Preview
Loading…
Annulla
Salva