Parcourir la source

Improve delayMicroseconds on Teensy 2.0 (Graham)

teensy4-core
PaulStoffregen il y a 7 ans
Parent
révision
4b60f9f447
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. +2
    -1
      teensy/core_pins.h

+ 2
- 1
teensy/core_pins.h Voir le fichier

@@ -2136,7 +2136,8 @@ static inline void delayMicroseconds(uint16_t usec)
uint8_t tmp2 = tmp;
asm volatile(
"L_%=_loop:" // 1 to load
"subi %0, 1" "\n\t" // 2
"subi %0, 1" "\n\t" // 1
"nop" "\n\t" // 1
"brne L_%=_loop" "\n\t" // 2 (1 on last)
: "=d" (tmp2)
: "0" (tmp2)

Chargement…
Annuler
Enregistrer