1.3.11.1 WDRV_PIC32MZW_IE_FRAME_TYPE_MASK Enum
C
typedef enum { /* If set in Tx API, the custom IE data provided by the application will be * added to the beacon frames while transmitting beacons. If set in Rx API, * the vendor specific IE data from the received beacon frames will be * passed to the application. */ WDRV_PIC32MZW_VENDOR_IE_BEACON = 0x01, /* If set in Tx API, the custom IE data provided by the application will be * added to the probe request frames while transmitting probe requests. If * set in Rx API, the vendor specific IE data from the received probe request * frames will be passed to the application. */ WDRV_PIC32MZW_VENDOR_IE_PROBE_REQ = 0x02, /* If set in Tx API the custom IE data provided by the application will be * added to the probe response frames while transmitting probe responses. If * set in Rx API, the vendor specific IE data from the received probe * response frames will be passed to the application. */ WDRV_PIC32MZW_VENDOR_IE_PROBE_RSP = 0x04 } WDRV_PIC32MZW_IE_FRAME_TYPE_MASK;
Summary
Defines frame filter mask values which is used while Rx/Tx of vendor IE tags.
Description
Filter mask enables the application to choose the frame types on which custom IE can be added while Tx and the frame types from which vendor specific IE data can be extracted at Rx.
Remarks
Bit position value 1 enables and 0 disables Rx/Tx of vendor IE data.