1.2.5.59 ADP_BUFFER_IND_PARAMS Union
C
typedef union
{
struct
{
/* Large buffers availability */
/* '1' if buffers available, '0' otherwise */
uint8_t largeBuffersAvailable : 1;
/* Medium buffers availability */
/* '1' if buffers available, '0' otherwise */
uint8_t mediumBuffersAvailable : 1;
/* Small buffers availability */
/* '1' if buffers available, '0' otherwise */
uint8_t smallBuffersAvailable : 1;
/* Reserved */
uint8_t :5;
};
/* Bitmap containig all previous information */
uint8_t bufferIndicationBitmap;
} ADP_BUFFER_IND_PARAMS;Summary
Defines the Parameters for the Buffer Indication event handler function.
Description
The union contains the fields reported by the Buffer Indication event handler function.
Field description:
- largeBuffersAvailable. Large buffers availability. '1' if buffers available, '0' otherwise.
- mediumBuffersAvailable. Medium buffers availability. '1' if buffers available, '0' otherwise.
- smallBuffersAvailable. Small buffers availability. '1' if buffers available, '0' otherwise.
- bufferIndicationBitmap. Bitmap containig all previous information.
Remarks
None.
