mirror of
https://github.com/xcat2/xNBA.git
synced 2025-08-22 11:10:25 +00:00
13 lines
251 B
C
13 lines
251 B
C
#ifndef LATCH_H
|
|
#define LATCH_H
|
|
|
|
//#define TICKS_PER_SEC (1000000UL)
|
|
#define TICKS_PER_SEC (625000UL)
|
|
|
|
/* Fixed timer interval used for calibrating a more precise timer */
|
|
//#define LATCHES_PER_SEC 10
|
|
|
|
void sleep_latch(void);
|
|
|
|
#endif /* LATCH_H */
|