소스 검색

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…
취소
저장