Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void delayus (uint32_t microseconds)
- {
- uint32_t overflows;
- uint32_t partial;
- overflows = microseconds/65536;
- //partial = microseconds - overflow * 65536;
- partial = microseconds % 65536;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement