zigbee-herdsman
    Preparing search index...

    Type Alias Ember802154RadioPriorities

    Struct used to specify priorities for Zigbee radio operations

    type Ember802154RadioPriorities = {
        activeRx: number;
        backgroundRx: number;
        maxTxPriority: number;
        minTxPriority: number;
        txStep: number;
    }
    Index

    Properties

    activeRx: number

    The priority of a Zigbee RX operation while receiving a packet. uint8_t

    backgroundRx: number

    The priority of a Zigbee RX operation while not receiving a packet. uint8_t

    maxTxPriority: number

    Maximum priority of a Zigbee TX operation. Retried messages have priorities bumped by tx_step, up to a maximum of max_tx_priority. uint8_t

    minTxPriority: number

    Starting priority of a Zigbee TX operation. The first transmit of the packet, before retries, uses this priority. uint8_t

    txStep: number

    The increase in TX priority (which is a decrement in value) for each retry. uint8_t