This module performs serial input/output functionalities via UART from and to the HOST.
Macros | |
#define | SERIAL_RX_BUF_SIZE_NCP 156 |
Functions | |
uint8_t | sio2ncp_getchar (void) |
This function performs a blocking character receive functionality. More... | |
int | sio2ncp_getchar_nowait (void) |
This function performs a non-blocking character receive functionality. More... | |
void | sio2ncp_init (void) |
Initializes the Serial IO Module of the NCP Device. More... | |
uint8_t | sio2ncp_rx (uint8_t *data, uint8_t max_length) |
Receives data from UART. More... | |
uint8_t | sio2ncp_tx (uint8_t *data, uint8_t length) |
Transmits data via UART. More... | |
#define SERIAL_RX_BUF_SIZE_NCP 156 |
Referenced by sio2ncp_rx().
uint8_t sio2ncp_getchar | ( | void | ) |
This function performs a blocking character receive functionality.
References c, and sio2ncp_rx().
int sio2ncp_getchar_nowait | ( | void | ) |
This function performs a non-blocking character receive functionality.
References c, and sio2ncp_rx().
void sio2ncp_init | ( | void | ) |
Initializes the Serial IO Module of the NCP Device.
References usart_config::baudrate, IOPORT_DIR_OUTPUT, IOPORT_PIN_LEVEL_HIGH, ioport_set_pin_dir(), ioport_set_pin_level(), usart_config::mux_setting, usart_config::pinmux_pad0, usart_config::pinmux_pad1, usart_config::pinmux_pad2, usart_config::pinmux_pad3, usart_enable(), usart_enable_transceiver(), usart_get_config_defaults(), usart_serial_init(), usart_serial_options, USART_TRANSCEIVER_RX, and USART_TRANSCEIVER_TX.
uint8_t sio2ncp_rx | ( | uint8_t * | data, |
uint8_t | max_length | ||
) |
Receives data from UART.
data | pointer to the buffer where the received data is to be stored |
max_length | maximum length of data to be received |
References serial_rx_buf, serial_rx_buf_head, SERIAL_RX_BUF_SIZE_NCP, serial_rx_buf_tail, and serial_rx_count.
Referenced by sio2ncp_getchar(), and sio2ncp_getchar_nowait().
uint8_t sio2ncp_tx | ( | uint8_t * | data, |
uint8_t | length | ||
) |
Transmits data via UART.
data | Pointer to the buffer where the data to be transmitted is present |
length | Number of bytes to be transmitted |
References length, status, STATUS_OK, and usart_serial_write_packet().