Back to FabImage Library website
You are here: Start » Function Reference » System » Serial Port » SerialPort_ReadChar
Header: | STD.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Reads single character from serial port.
Syntax
void fil::SerialPort_ReadChar ( SerialPortState& ioState, int inPortId, ftl::Conditional<ftl::String>& outCharacter )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
ioState | SerialPortState& | Object used to maintain state of the function. | ||
![]() |
inPortId | int | 0 - 7 | 0 | Identifies open port instance when working with multiple serial ports |
![]() |
outCharacter | Conditional<String>& | Conditionally returns string with one received character. |
Description
Filter reads single byte from input buffer and return data as a single character.
Filter perform non-blocking reading form buffer and will return NIL when no data was read.
Remarks
Using the SerialPort_Config filter is necessary before using the SerialPort_ReadChar filter.
Filter SerialPort_Config does not guarantee that input buffer will be empty.
Errors
Using filters reading from serial port without previous configuration will cause "SerialPort not initialized" error.
See Also
- SerialPort_Config – Configures the serial port.
- SerialPort_ReadByte – Reads one character in binary mode from serial port.
- SerialPort_ReadBuffer – Reads raw binary data from serial port.
- SerialPort_ReadString – Reads string characters from serial port.
- SerialPort_ReadStringUntil – Reads the string from the serial port to encounter a string delimiter.