pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface CanFrame

    A CAN frame: an identifier, its flags, and its payload.

    interface CanFrame {
        data: Buffer;
        dlc: number;
        extended: boolean;
        fd: boolean;
        id: number;
        len: number;
        remote: boolean;
    }
    Index
    data: Buffer

    The payload, empty for a remote frame.

    dlc: number

    The data length code as it appears on the wire.

    extended: boolean

    Whether the identifier is a 29-bit extended one.

    fd: boolean

    Whether this is a CAN-FD frame rather than classic CAN 2.0.

    id: number

    The arbitration identifier, already masked to 11 or 29 bits.

    len: number

    The data length: the payload length, or the length a remote frame requests.

    remote: boolean

    Whether this is a remote transmission request, which carries no payload.