瀏覽代碼

Fix delay when yield longer than 1ms

teensy4-core
PaulStoffregen 9 年之前
父節點
當前提交
59a7b221fa
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      teensy3/pins_teensy.c

+ 1
- 1
teensy3/pins_teensy.c 查看文件

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

Loading…
取消
儲存