blob: 87195b427dbfab5f71b153c521398245062532c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef LATCH_H
#define LATCH_H
#define TICKS_PER_SEC (1000UL)
/* Fixed timer interval used for calibrating a more precise timer */
#define LATCHES_PER_SEC 10
void sleep_latch(void);
#endif /* LATCH_H */
|