This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
teensy-cores
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Update for binding _delay_us to delayMicroseconds
AVR compatibility
main
JHSawatzki
10 years ago
parent
9b857be028
commit
2693e979c5
1 changed files
with
4 additions
and
0 deletions
Split View
Show Diff Stats
+4
-0
teensy3/util/delay.h
+ 4
- 0
teensy3/util/delay.h
View File
@@ -1,3 +1,7 @@
#ifndef _delay_us
#define _delay_us(n) delayMicroseconds(n)
#endif
#ifndef _delay_ms
#define _delay_ms(n) delay(n)
#endif
Write
Preview
Loading…
Cancel
Save