Interface ISerialBitMode

interface ISerialBitMode {
    multipart: boolean;
    parity: boolean;
    start: boolean;
    stop: null | number;
}

Properties

multipart: boolean

Set to true if the serial data block requires several VBAN Packets (1436 BYTE max) to be completed.

parity: boolean

PARITY CHECKING:

  • false : no parity checking
  • true : parity checking.
start: boolean

START BIT

  • false : no start bit
  • true : start bit.
stop: null | number

STOP BIT

  • 1 stop bit
  • 1,5 stop bit.
  • 2 stop bit.
  • null : unused