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

    Interface RxData

    A decoded data frame, with its payload decrypted.

    interface RxData {
        ack: boolean;
        adr: boolean;
        confirmed: boolean;
        devAddr: number;
        direction: LorawanDirection;
        fcnt: number;
        fopts: Buffer;
        fpending: boolean;
        fport: number | null;
        payload: Buffer;
    }
    Index
    ack: boolean

    Whether the frame acknowledges the last confirmed one.

    adr: boolean

    Whether the frame takes part in adaptive data rate.

    confirmed: boolean

    Whether the frame asks to be acknowledged.

    devAddr: number

    The device address the frame carries.

    direction: LorawanDirection

    The direction the frame travelled.

    fcnt: number

    The low 16 bits of the frame counter.

    fopts: Buffer

    The MAC commands the header carried.

    fpending: boolean

    Whether the network has more downlink data waiting.

    fport: number | null

    The port the frame was sent on, or null when it carries only options.

    payload: Buffer

    The decrypted application payload.