1.3.5.1.23 MAC_RF_POS_TABLE_ENTRY Struct
C
typedef struct __attribute__((packed))
{
MAC_SHORT_ADDRESS shortAddress;
uint8_t forwardLqi;
uint8_t reverseLqi;
uint8_t dutyCycle;
uint8_t forwardTxPowerOffset;
uint8_t reverseTxPowerOffset;
uint16_t posValidTime;
} MAC_RF_POS_TABLE_ENTRY;
Summary
The MAC RF POS Table Entry as defined in the G3-PLC standard.
Description
This structure contains the fields that define a MAC RF POS table entry as defined in the G3-PLC standard. POS table contains an entry for every node a frame has been received, either addressed for us or not.
Field description:
- shortAddress: Short Address of node in the hearing domain
- forwardLqi: Link Quality reported by neighbour when receiving the frames
- reverseLqi: Link Quality of last received frame from node
- dutyCycle: Current Duty Cycle consumed by neighbour node
- forwardTxPowerOffset: TxPowerOffset used to transmit to neighbour node
- reverseTxPowerOffset: TxPowerOffset used by neighbour node when transmitting towards us
- posValidTime: Time left, in seconds, for the entry to expire
Remarks
None.
