no-OS
parameters.h
Go to the documentation of this file.
1 /***************************************************************************/
40 #ifndef __PARAMETERS_H__
41 #define __PARAMETERS_H__
42 
43 /******************************************************************************/
44 /***************************** Include Files **********************************/
45 /******************************************************************************/
46 #include "stdio.h"
47 #include "platform_init.h"
48 #include "aducm3029_i2c.h"
49 #include "aducm3029_irq.h"
50 #include "aducm3029_uart.h"
51 #include "aducm3029_uart_stdio.h"
52 
53 /******************************************************************************/
54 /********************** Macros and Constants Definitions **********************/
55 /******************************************************************************/
56 
57 #define UART_IRQ_ID ADUCM_UART_INT_ID
58 
59 #define UART_DEVICE_ID 0
60 #define UART_BAUDRATE 115200
61 #define UART_EXTRA NULL
62 #define UART_OPS &aducm_uart_ops
63 
64 #define I2C_DEVICE_ID 0
65 #define I2C_OPS &aducm_i2c_ops
66 #define I2C_EXTRA NULL
67 
68 #define MAX_DUT MAX5380M
69 
70 #endif /* __PARAMETERS_H__ */
aducm3029_uart.h
Header file of UART driver for ADuCM302x.
aducm3029_i2c.h
aducm3029_irq.h
Header file of IRQ driver for ADuCM302x.
aducm3029_uart_stdio.h
Header file for UART driver stdout/stdin redirection.
platform_init.h
ADuCM3029 platform initialization header.