浏览代码

Improve delayMicroseconds on Teensy 2.0 (Graham)

main
PaulStoffregen 7 年前
父节点
当前提交
4b60f9f447
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      teensy/core_pins.h

+ 2
- 1
teensy/core_pins.h 查看文件

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

正在加载...
取消
保存