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
Fix delay when yield longer than 1ms
teensy4-core
PaulStoffregen
9 anni fa
parent
2765de0801
commit
59a7b221fa
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
+1
-1
teensy3/pins_teensy.c
+ 1
- 1
teensy3/pins_teensy.c
Vedi File
@@ -1100,7 +1100,7 @@ void delay(uint32_t ms)
if (ms > 0) {
while (1) {
if
((micros() - start) >= 1000) {
while
((micros() - start) >= 1000) {
ms--;
if (ms == 0) return;
start += 1000;
Write
Preview
Loading…
Annulla
Salva