This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
teensy-core-4.1
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
add missing "WFI"
...prevent overheating when overclocking and exiting loop()
teensy4-core
Frank
4 years ago
parent
c85d2574bc
commit
9f4e4e698d
No account linked to committer's email address
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
teensy4/startup.c
+ 1
- 1
teensy4/startup.c
View File
@@ -147,7 +147,7 @@ void ResetHandler(void)
//printf("before setup\n");
main();
while (1) ;
while (1)
asm("WFI")
;
}
Write
Preview
Loading…
Cancel
Save