aboutsummaryrefslogtreecommitdiff
path: root/lib/lufa/Projects/Webserver/Lib/uip/clock.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lufa/Projects/Webserver/Lib/uip/clock.h')
-rw-r--r--lib/lufa/Projects/Webserver/Lib/uip/clock.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/lufa/Projects/Webserver/Lib/uip/clock.h b/lib/lufa/Projects/Webserver/Lib/uip/clock.h
new file mode 100644
index 000000000..bbfa4ac0e
--- /dev/null
+++ b/lib/lufa/Projects/Webserver/Lib/uip/clock.h
@@ -0,0 +1,13 @@
1#ifndef __CLOCK_ARCH_H__
2#define __CLOCK_ARCH_H__
3
4#include <stdint.h>
5#include <util/atomic.h>
6
7typedef uint16_t clock_time_t;
8#define CLOCK_SECOND 100
9void clock_init(void);
10clock_time_t clock_time(void);
11
12#endif /* __CLOCK_ARCH_H__ */
13