Represents a CAN (Controller Area Network) message type.

interface CanMsgType {
    brs: boolean;
    canfd: boolean;
    idType: CAN_ID_TYPE;
    remote: boolean;
    uuid?: string;
}

Properties

brs: boolean

Indicates if Bit Rate Switching (BRS) is enabled.

canfd: boolean

Indicates if CAN FD (Flexible Data-rate) is used.

idType: CAN_ID_TYPE

The type of CAN ID.

remote: boolean

Indicates if the message is a remote frame.

uuid?: string

Optional unique identifier for the message.