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

    Interface Rxpk

    A packet the gateway heard, with the metadata the protocol carries beside it.

    interface Rxpk {
        bitrateBps?: number;
        channel?: number;
        crc?: GatewayCrc;
        frequencyHz: number;
        gpsMillis?: number;
        link?: LoraLink;
        payload: Buffer;
        receivedAtUs?: number;
        rfChain?: number;
        rssiDbm?: number;
        snrDb?: number;
        timestampUs?: number;
    }
    Index
    bitrateBps?: number

    The bitrate in bits per second, for an FSK packet.

    channel?: number

    The concentrator channel it arrived on.

    What the CRC said; Ok when omitted.

    frequencyHz: number

    The carrier it arrived on, in hertz.

    gpsMillis?: number

    When it arrived on the GPS clock, in milliseconds since 6 January 1980.

    link?: LoraLink

    The spreading factor, bandwidth, and coding rate, for a LoRa packet.

    payload: Buffer

    The packet itself.

    receivedAtUs?: number

    When it arrived, in microseconds since 1970-01-01 UTC.

    rfChain?: number

    The radio chain it arrived on.

    rssiDbm?: number

    The received signal strength in dBm.

    snrDb?: number

    The signal-to-noise ratio in dB.

    timestampUs?: number

    The concentrator's own timestamp of the reception, in microseconds.