tsFILE
最終更新
最終更新
A structure defining the output destination specified by vfPrintf()
vPutChar()
.
SERIAL_bTxChar()
puts the bytes passed as u8Char
into a FIFO queue in the SERIAL library.
By preparing your own output functions, you can also use it to output strings to non-UART devices.
The following is an example of using this as an output code for a character LCD.
uint8
u8Device
Serial port (E_AHI_UART_0 or E_AHI_UART_1 should be specified)
bool_t (*bPutChar) (uint8 u8Device, uint8 u8Char)
bPutChar
Pointer to the function for output, SERIAL_bTxChar()
is provided for the SERIAL library.