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 sio2ncp_rx().
int sio2ncp_getchar_nowait | ( | void | ) |
This function performs a non-blocking character receive functionality.
References sio2ncp_rx().
void sio2ncp_init | ( | void | ) |
Initializes the Serial IO Module of the NCP Device.
References IOPORT_DIR_OUTPUT, IOPORT_PIN_LEVEL_HIGH, ioport_set_pin_dir(), ioport_set_pin_level(), stdio_serial_init(), and usart_serial_init().
Referenced by performance_analyzer_init(), serial_api_init(), serial_bridge_init(), and wpan_init().
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 nwk_task(), serial_bridge_handler(), sio2ncp_getchar(), sio2ncp_getchar_nowait(), and wpan_task().
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_code_genare_t, STATUS_OK, and usart_serial_write_packet().
Referenced by nwk_task(), serial_bridge_handler(), wpan_mcps_data_req(), wpan_mlme_gts_req(), wpan_mlme_reset_req(), and wpan_mlme_set_req().