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

    Interface Txpk

    A packet the server asks the gateway to transmit.

    interface Txpk {
        bitrateBps?: number;
        frequencyDeviationHz?: number;
        frequencyHz: number;
        gpsMillis?: number;
        immediate?: boolean;
        invertPolarity?: boolean;
        link?: LoraLink;
        payload: Buffer;
        powerDbm?: number;
        preambleSymbols?: number;
        rfChain?: number;
        timestampUs?: number;
        withoutCrc?: boolean;
    }
    Index
    bitrateBps?: number

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

    frequencyDeviationHz?: number

    The FSK frequency deviation in hertz.

    frequencyHz: number

    The carrier to transmit on, in hertz.

    gpsMillis?: number

    The GPS time to transmit at, in milliseconds since 6 January 1980.

    immediate?: boolean

    Whether to transmit at once, which ignores the timestamps.

    invertPolarity?: boolean

    Whether to invert the LoRa polarity, as a LoRaWAN downlink is sent.

    link?: LoraLink

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

    payload: Buffer

    The packet itself.

    powerDbm?: number

    The power to transmit at, in dBm; 14 when omitted.

    preambleSymbols?: number

    How long a preamble to send, in symbols.

    rfChain?: number

    The radio chain to transmit from.

    timestampUs?: number

    The concentrator timestamp to transmit at, in microseconds.

    withoutCrc?: boolean

    Whether to leave the physical CRC off, as LoRaWAN downlinks are.