c759d01a3b0a0b4ff9bd4f27398aca90f94a62bb
[pub/USBasp.git] / Projects / Incomplete / Webserver / Lib / uip / conf / clock-arch.h
1 #ifndef __CLOCK_ARCH_H__
2 #define __CLOCK_ARCH_H__
3
4 #include "global-conf.h"
5 #include <stdint.h>
6
7 typedef uint16_t clock_time_t;
8 #define CLOCK_CONF_SECOND (F_CPU / 1024 / 255) //Freqency divided prescaler and counter register size
9 void clock_init(void);
10 clock_time_t clock_time(void);
11
12 #endif /* __CLOCK_ARCH_H__ */