no-OS
parameters.h
Go to the documentation of this file.
1 /***************************************************************************/
39 #ifndef __PARAMETERS_H__
40 #define __PARAMETERS_H__
41 
42 #include <PinNames.h>
43 #include "mbed_uart.h"
44 #include "mbed_spi.h"
45 #include "no_os_uart.h"
46 
47 #define UART_TX_PIN CONSOLE_TX
48 #define UART_RX_PIN CONSOLE_RX
49 #define UART_DEVICE_ID 5
50 #define UART_IRQ_ID 53
51 #define UART_BAUDRATE 115200
52 #define UART_EXTRA &adf4382_uart_extra_ip
53 #define UART_OPS &mbed_uart_ops
54 
55 #define SPI_BAUDRATE 4000000
56 #define SPI_OPS &mbed_spi_ops
57 #define SPI_EXTRA &adf4382_spi_extra
58 #define SPI_DEVICE_ID 5
59 #define SPI_CS SDP_SPI_CS_A
60 
63 
64 #endif /* __PARAMETERS_H__ */
mbed_uart.h
Header containing extra types required for UART interface.
adf4382_uart_extra_ip
struct mbed_uart_init_param adf4382_uart_extra_ip
Definition: parameters.c:42
adf4382_spi_extra
struct mbed_spi_init_param adf4382_spi_extra
mbed_spi_init_param
Structure holding the SPI init parameters for mbed platform.
Definition: mbed_spi.h:69
mbed_spi.h
Header containing extra types required for SPI interface.
mbed_uart_init_param
Structure holding the UART init parameters for mbed platform.
Definition: mbed_uart.h:69
no_os_uart.h
Header file of UART interface.