Browse Source
add missing "WFI"
...prevent overheating when overclocking and exiting loop()
main
Frank
3 years ago
No account linked to committer's email address
1 changed files with
1 additions and
1 deletions
-
teensy4/startup.c
|
|
@@ -147,7 +147,7 @@ void ResetHandler(void) |
|
|
|
//printf("before setup\n"); |
|
|
|
main(); |
|
|
|
|
|
|
|
while (1) ; |
|
|
|
while (1) asm("WFI"); |
|
|
|
} |
|
|
|
|
|
|
|
|