index
:
daft-watch
main
Simple wrist watch with RTC using attiny84a
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
stubbed
/
util
/
delay.h
blob: ce4323eba25b280d69fe0069ea0b8be417ec6a56 (
plain
) (
blame
)
1
2
3
4
5
#include
<unistd.h>
void
_delay_ms
(
int
ms
)
{
usleep
(
ms
*
1000
);
}