blob: 945511d9fb64aeb9af7489ee42b7794a04524082 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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_ */
|