1.4.3.5 PAL_ATTRIBUTE_ID Enum

C

typedef enum {
    /* Enable/Disable continuous transmission mode in PLC */
    PAL_ID_CONTINUOUS_TX_EN,
    /* Zero Crossing Period in PLC */
    PAL_ID_ZC_PERIOD,
    /* Host controller version identifier in PLC */
    PAL_ID_HOST_VERSION,
    /* Maximum transmission/reception number of channels in PLC */
    PAL_ID_CFG_MAX_TXRX_NUM_CHANNELS,
    /* Attenuation to be applied to every message */
    PAL_ID_CFG_ATTENUATION,
    /* List of available transmission/reception channels, double combination in PLC */
    PAL_ID_CFG_TXRX_DOUBLE_CHANNEL_LIST,
    /* Product identifier */
    PAL_ID_INFO_VERSION,
    /* Enable/disable PHY Sniffer */
    PAL_ID_PHY_SNIFFER_EN,
    /* Flag to enable branch auto detection in PLC */
    PAL_ID_CFG_AUTODETECT_BRANCH,
    /* When branch auto detection disabled, indicate impedance to use in PLC */
    PAL_ID_CFG_IMPEDANCE,
    /* Transmission/Reception channel */
    PAL_ID_CFG_TXRX_CHANNEL,
    /* List of available transmission/reception channels
    (depends on coupling and band plan) in PLC */
    PAL_ID_CFG_TXRX_CHANNEL_LIST,
    /* RX payload length in OFDM symbols */
    PAL_ID_RX_PAYLOAD_LEN_SYM,
    /* Duration of channel senses in CSMA RF */
    PAL_ID_CSMA_RF_SENSE_TIME,
    /* Duration of a unit backoff period in CSMA RF */
    PAL_ID_UNIT_BACKOFF_PERIOD,
    /* Network detection in PLC*/
    PAL_ID_NETWORK_DETECTION,
    /* Device information in PLC*/
    PAL_ID_INFO_DEVICE,
    /* Remaining duration of present frame in PLC */
    PAL_ID_REMAINING_FRAME_DURATION,
    /* Default scheme for RF */
    PAL_ID_RF_DEFAULT_SCHEME,
    /* Physical parameters for a received PLC message */
    PAL_ID_PLC_RX_PHY_PARAMS,
    /* RF channels used to generate the main hopping sequence */
    PAL_ID_RF_BITS_HOPPING_SEQUENCE,
    /* RF channels used to generate the beacon hopping sequence */
    PAL_ID_RF_BITS_BCN_HOPPING_SEQUENCE,
    /* Number of channels in the hopping sequence. */
    PAL_ID_RF_MAC_HOPPING_SEQUENCE_LENGTH,
    /* Number of channels in the Beacon hopping sequence */
    PAL_ID_RF_MAC_HOPPING_BCN_SEQUENCE_LENGTH,
    /* Number of supported RF channels */
    PAL_ID_RF_NUM_CHANNELS,
    /* The maximum PSDU (PHY Service Data Unit) in octets */
    PAL_ID_MAX_PHY_PACKET_SIZE,
    /* Turn around time for the SUN (Smart Utility Network) FSK PHY layer */
    PAL_ID_TURNAROUND_TIME,
    /* The transmit power of the device in dBm */
    PAL_ID_PHY_TX_POWER,
    /* Status of FEC (Forward Error Correction) */
    PAL_ID_PHY_FSK_FEC_ENABLED,
    /* Status of the RSC (Recursive and Systematic Code) interleaving */
    PAL_ID_PHY_FSK_FEC_INTERLEAVING_RSC,
    /* FEC scheme */
    PAL_ID_PHY_FSK_FEC_SCHEME,
    /* Length of the preamble pattern in FSK */
    PAL_ID_PHY_FSK_PREAMBLE_LENGTH,
    /* Used group of SFDs (Start of Frame Delimiter) */
    PAL_ID_PHY_SUN_FSK_SFD,
    /* Status of PSDU (PHY Service Data Unit) data whitening */
    PAL_ID_PHY_FSK_SCRAMBLE_PSDU,
    /* The duration for CCA (Clear Channel Assessment) */
    PAL_ID_PHY_CCA_DURATION,
    /* Number of dB above the specified receiver sensitivity for the RF PHY layer */
    PAL_ID_PHY_CCA_THRESHOLD,
    /* RF band and operating mode */
    PAL_ID_RF_PHY_BAND_OPERATING_MODE,
} PAL_ATTRIBUTE_ID;

Summary

PHY parameter identifiers requested from the MAC layer.

Description

This list contains the PHY parameter identifiers to be used by the MAC layer to access PHY parameters.

Remarks

None.