aboutsummaryrefslogtreecommitdiff
path: root/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'time.h')
-rw-r--r--time.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/time.h b/time.h
new file mode 100644
index 0000000..945511d
--- /dev/null
+++ b/time.h
@@ -0,0 +1,15 @@
+#include <avr/io.h>
+#include <avr/interrupt.h>
+#include <stdint.h>
+
+#include "mcu/mcu_def.h"
+
+#ifndef _IOE_TIME_H_
+#define _IOE_TIME_H_
+
+#ifndef CONFIG_IOE_TIME_TIMER
+#error "To use Time you must specify CONFIG_IOE_TIME_TIMER macro."
+#endif
+
+
+#endif /* _IOE_TIME_H_ */