DHCOM_HAL
Hardware-abstraction library (HAL) for multiple targets, including DHCOM modules
 All Data Structures Files Functions Enumerations Macros Groups
HardwareProps_AM35.hpp
1 /*
2  * HardwareProps_AM35.hpp
3  *
4  * Created on: Jul 4, 2013
5  * Author: Peter Kishalov (PK), DH electronics GmbH
6  */
7 
8 #ifndef USE_HARDWARE_DHCOM_AM35
9 # define AM35_Props NULL
10 #else
11 
12 static const uint8_t AM35_GPIOpins[] = {
13  116, 117, 118, 119, 125, 140, 141, 155, 152, 96, 94, 58, 97, 98, 95, 106, 105, 104, 103, 102, 101, 100, 99};
14 
15 static const char *AM35_UARTS[] = {
16  "/dev/ttyO0", "/dev/ttyO1", "/dev/ttyO2", };
17 
18 static HardwareProps AM35_Props_struct = {
19  System::HARDWARE_DHCOM_AM35, 23, AM35_GPIOpins, 3, AM35_UARTS };
20 
21 # define AM35_Props (&AM35_Props_struct)
22 #endif