no-OS
parameters.h
Go to the documentation of this file.
1 /***************************************************************************/
34 #ifndef __PARAMETERS_H__
35 #define __PARAMETERS_H__
36 
37 /******************************************************************************/
38 /***************************** Include Files **********************************/
39 /******************************************************************************/
40 #include "stdio.h"
41 #include "platform_init.h"
42 #include "aducm3029_i2c.h"
43 #include "aducm3029_irq.h"
44 #include "aducm3029_uart.h"
45 #include "aducm3029_uart_stdio.h"
46 
47 /******************************************************************************/
48 /********************** Macros and Constants Definitions **********************/
49 /******************************************************************************/
50 
51 #define UART_IRQ_ID ADUCM_UART_INT_ID
52 
53 #define UART_DEVICE_ID 0
54 #define UART_BAUDRATE 115200
55 #define UART_EXTRA NULL
56 #define UART_OPS &aducm_uart_ops
57 
58 #define I2C_DEVICE_ID 0
59 #define I2C_OPS &aducm_i2c_ops
60 #define I2C_EXTRA NULL
61 
62 #define MAX_DUT MAX5380M
63 
64 #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.