mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-10-23 01:47:33 +08:00
32 lines
584 B
Plaintext
32 lines
584 B
Plaintext
menu "Example Configuration"
|
|
|
|
config CHANNEL
|
|
int "Channel"
|
|
range 1 13
|
|
default 1
|
|
|
|
config FILTER_MASK_MGMT
|
|
bool "Receive management packets"
|
|
default y
|
|
|
|
config FILTER_MASK_CTRL
|
|
bool "Receive ctrl packets"
|
|
default n
|
|
|
|
config FILTER_MASK_DATA
|
|
bool "Receive data packets"
|
|
default n
|
|
|
|
config FILTER_MASK_DATA_FRAME_PAYLOAD
|
|
depends on FILTER_MASK_DATA
|
|
bool "Receive data frame payload"
|
|
default n
|
|
help
|
|
Select this option to enable recv data frame payload
|
|
|
|
config FILTER_MASK_MISC
|
|
bool "Receive misc packets"
|
|
default n
|
|
|
|
endmenu
|