소스 검색
add missing "WFI"
...prevent overheating when overclocking and exiting loop()
main
Frank
3 년 전
No account linked to committer's email address
1개의 변경된 파일과
1개의 추가작업 그리고
1개의 파일을 삭제
-
teensy4/startup.c
|
|
@@ -147,7 +147,7 @@ void ResetHandler(void) |
|
|
|
//printf("before setup\n"); |
|
|
|
main(); |
|
|
|
|
|
|
|
while (1) ; |
|
|
|
while (1) asm("WFI"); |
|
|
|
} |
|
|
|
|
|
|
|
|