Parcourir la source

Fix delay when yield longer than 1ms

teensy4-core
PaulStoffregen il y a 9 ans
Parent
révision
59a7b221fa
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      teensy3/pins_teensy.c

+ 1
- 1
teensy3/pins_teensy.c Voir le fichier

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

Chargement…
Annuler
Enregistrer