tsSerialPortSetup
Configure the basic settings for the serial port. Specify the UART hardware to be used and the FIFO memory for input and output.
uint8 | u8SerialPort | Serial port (E_AHI_UART_0 or E_AHI_UART_1 should be specified) |
uint8* | pu8SerialRxQueueBuffer | Pointer to a FIFO buffer for Rx (UART receive). This buffer shall be statically allocated. |
uint16 | u16SerialRxQueueSize | Size of the Rx FIFO buffer |
uint8* | pu8SerialTxQueueBuffer | Pointer to a FIFO buffer for Tx (UART transmission). This buffer shall be statically allocated. |
uint16 | u16SerialTxQueueSize | Size of the Tx FIFO buffer |
uint32 | u32BaudRate | Baud rate ( |
uint8 | u8RX_FIFO_LEVEL |
|
about u32BaudRate
The standard baud rates are 9600, 19200, 38400 and 115200 bps. Other values, out of range values, CBP and divider settings are possible, but are not supported.
If a high baud rate (230400,250000,500000,1000000 [maximum]) is set, processing problems such as dropouts may become more pronounced.
Sample code
最終更新