onvif
    Preparing search index...

    Interface SerialPortConfiguration

    The parameters for configuring the serial port.

    interface SerialPortConfiguration {
        baudRate: number;
        characterLength: number;
        parityBit: ParityBit;
        stopBit: number;
        token: string;
        type: SerialPortType;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    baudRate: number

    The transfer bitrate.

    characterLength: number

    The bit length for each character.

    parityBit: ParityBit

    The parity for the data error detection.

    stopBit: number

    The number of stop bits used to terminate each character.

    token: string