1.2.5.37 ADP_MAC_GET_CFM_PARAMS Struct
C
typedef struct
{
/* The identifier of the IB attribute read */
uint32_t attributeId;
/* The index within the table of the specified IB attribute read */
uint16_t attributeIndex;
/* The status of the get request */
uint8_t status;
/* The length of the value of the attribute read from the IB */
uint8_t attributeLength;
/* The value of the attribute read from the IB */
uint8_t attributeValue[144];
} ADP_MAC_GET_CFM_PARAMS;
Summary
Defines the structure returned by the ADP_MAC_GET_CFM_CALLBACK function.
Description
This data type defines the structure of an ADP MAC Get Confirm callback. It is returned by the ADP_MAC_GET_CFM_CALLBACK function to indicate the Get result and value.
Field description:
- attributeId. The identifier of the IB attribute to get. See MAC_WRP_PIB_ATTRIBUTE
- attributeIndex. The index within the table of the specified IB attribute.
- status. The result of the get request.
- attributeLength. The length of the value of the attribute read from the IB.
- attributeValue. Array containing the value of the attribute read from the IB.
Remarks
None.