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

    Interface J1939Message

    The fields J1939 packs into an extended CAN identifier.

    interface J1939Message {
        broadcast: boolean;
        destination: number | null;
        pduFormat: number;
        pgn: number;
        priority: number;
        source: number;
    }
    Index
    broadcast: boolean

    Whether the message is a broadcast.

    destination: number | null

    The destination address for an addressed (PDU1) message, or null for a broadcast (PDU2) one.

    pduFormat: number

    The PDU format byte of the parameter group.

    pgn: number

    The parameter group number, which names what the message carries.

    priority: number

    The message priority, 0 (highest) to 7.

    source: number

    The source address: the node that sent the message.