menu
SerialErrorKind
import { SerialErrorKind } from "destack:device/binding";
Serial error kind.
1export enum SerialErrorKind {2 Unknown = 1,3 Break = 2,4 Framing = 3,5 Parity = 4,6 Overrun = 5,7 BufferOverflow = 6,8}Variants
Unknown = 1Host did not provide a stronger error classification.
Break = 2Break condition was detected on the line.
Framing = 3Framing error was detected on the line.
Parity = 4Parity error was detected on the line.
Overrun = 5Receiver overrun was detected on the line.
BufferOverflow = 6Host receive buffer overflow was detected.