2.5.1 PibValue_t Union
C
typedef union {
/** PIB Attribute Bool */
bool pib_value_bool;
/** PIB Attribute 8-bit */
uint8_t pib_value_8bit;
/** PIB Attribute 16-bit */
uint16_t pib_value_16bit;
/** PIB Attribute 32-bit */
uint32_t pib_value_32bit;
/** PIB Attribute 64-bit */
uint64_t pib_value_64bit;
} PibValue_t;
Summary
Union of different PHY Pib value types
Description
PibValue_t is used as the data type to set/get the different PHY Information Base value
Remarks
None
