1.3.2.3.55 MAC_WRP_POS_ENTRY_RF Struct

C

typedef struct __attribute__((packed))
{
    MAC_WRP_SHORT_ADDRESS shortAddress;
    uint8_t forwardLqi;
    uint8_t reverseLqi;
    uint8_t dutyCycle;
    uint8_t forwardTxPowerOffset;
    uint8_t reverseTxPowerOffset;
    uint16_t posValidTime;
} MAC_WRP_POS_ENTRY_RF;

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 we have received a frame, either addressed for us or not.

Field description:

  • shortAddress. Short Address of node in our hearing domain.

  • forwardLqi. Link Quality reported by neighbour when receiving our 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

It is only used when RF MAC layer is present.