DHCOM_HAL
Hardware-abstraction library (HAL) for multiple targets, including DHCOM modules
 All Data Structures Files Functions Enumerations Macros Groups
HardwareProps_IMX25.hpp
1 /*
2  * HardwareProps_IMX25.hpp
3  *
4  * Created on: Jul 4, 2013
5  * Author: Peter Kishalov (PK), DH electronics GmbH
6  */
7 
8 #ifndef USE_HARDWARE_DHCOM_IMX25
9 # define IMX25_Props NULL
10 #else
11 
12 const uint8_t IMX25_GPIOpins[] = {
13  44, 85, 36, 37, 38, 39, 40, 41, 81, 10, 11, 8, 9, 117, 7, 6, 31, 30, 29, 28, 27};
14 
15 const char *IMX25_UARTS[] = {
16  "/dev/ttymxc1", "/dev/ttymxc2", "/dev/ttymxc4", };
17 
18 HardwareProps IMX25_Props_struct = {
19  System::HARDWARE_DHCOM_IMX25, 21, IMX25_GPIOpins, 3, IMX25_UARTS};
20 
21 # define IMX25_Props (&IMX25_Props_struct)
22 #endif
23