aboutsummaryrefslogtreecommitdiff
path: root/time.h
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-10-17 15:40:51 +0200
committerKarel Kočí <cynerd@email.cz>2015-10-17 15:40:51 +0200
commitb0d8f22f3492fbb3f6dc0e8026e63c803af59007 (patch)
treeeb9707612e87856962474885f2a18ae1621d214e /time.h
parent8fa9db4244f4ee33aa47561c569edfa62fe37928 (diff)
downloadavr-ioe-b0d8f22f3492fbb3f6dc0e8026e63c803af59007.tar.gz
avr-ioe-b0d8f22f3492fbb3f6dc0e8026e63c803af59007.tar.bz2
avr-ioe-b0d8f22f3492fbb3f6dc0e8026e63c803af59007.zip
Complete commit of current work
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_ */