mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-06 05:38:02 +08:00
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
menu "Example Configuration"
|
|
|
|
config ESP_WIFI_SSID
|
|
string "WiFi SSID"
|
|
default "myssid"
|
|
help
|
|
SSID (network name) for the example to connect to.
|
|
|
|
config ESP_WIFI_PASSWORD
|
|
string "WiFi Password"
|
|
default "mypassword"
|
|
help
|
|
WiFi password (WPA or WPA2) for the example to use.
|
|
|
|
choice ESP_POWER_SAVE_MODE
|
|
prompt "power save mode"
|
|
default EXAMPLE_POWER_SAVE_MIN_MODEM
|
|
help
|
|
Power save mode for the esp8266 to use. Modem sleep mode includes minimum and maximum power save modes.
|
|
In minimum/maximum power save mode, station wakes up every DTIM to receive beacon. Broadcast data will not be
|
|
lost because it is transmitted after DTIM. However, it can not save much more power if DTIM is short
|
|
for DTIM is determined by AP.
|
|
|
|
config EXAMPLE_POWER_SAVE_NONE
|
|
bool "none"
|
|
config EXAMPLE_POWER_SAVE_MIN_MODEM
|
|
bool "minimum modem"
|
|
config EXAMPLE_POWER_SAVE_MAX_MODEM
|
|
bool "maximum modem"
|
|
endchoice
|
|
endmenu
|