]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lib.git/blob - rpp/include/hal/hal.h
Add version for TMS570_HDK platform
[pes-rpp/rpp-lib.git] / rpp / include / hal / hal.h
1 /**
2  * Hardware Abstraction Layer library interface file.
3  *
4  * @file hal.h
5  *
6  * @copyright Copyright (C) 2013 Czech Technical University in Prague
7  *
8  * @author Carlos Jenkins <carlos@jenkins.co.cr>
9  */
10
11 #ifndef __HAL_H
12 #define __HAL_H
13
14 #include "sys/sys.h"
15
16 #ifdef FREERTOS_POSIX
17 #include "hal/_rm48_hdk/gpio_def.h"
18 #include "hal/_rm48_hdk/port_def.h"
19 #include "hal/gpio.h"
20 #include "hal/port_gpio.h"
21 #endif /* FREERTOS_POSIX */
22
23 #ifdef TARGET_RM48_HDK
24 #include "hal/_rm48_hdk/gpio_def.h"
25 #include "hal/_rm48_hdk/port_def.h"
26 #include "hal/gpio.h"
27 #include "hal/port_gpio.h"
28 #endif /* TARGET_RM48_HDK */
29
30 #ifdef TARGET_TMS570_HDK
31 #include "hal/_tms570_hdk/gpio_def.h"
32 #include "hal/_tms570_hdk/port_def.h"
33 #include "hal/gpio.h"
34 #include "hal/port_gpio.h"
35 #endif /* TARGET_TMS570_HDK */
36
37 #endif /* __HAL_H */