TwclSerialError Enumeration

The serial errors.

Namespace: wclSerialClients
type
 TwclSerialError = (
 erBreak,
 erFrame,
 erOverrun,
 erRxOver,
 erRxParity
 );

The TwclSerialError type exposes the following members.

Show:
 NameDescription
erBreak

The hardware detected a break condition.

erFrame

The hardware detected a framing error.

erOverrun

A character-buffer overrun has occurred. The next character is lost.

erRxOver

An input buffer overflow has occurred. There is either no room in the input buffer, or a character was received after the end-of-file (EOF) character.

erRxParity

The hardware detected a parity error.

Top