07a3eca372
Closes: IDF-236 Closes: https://github.com/espressif/esp-idf/pull/1668 Closes: https://github.com/espressif/esp-idf/pull/4103
31 lines
899 B
Text
31 lines
899 B
Text
menu "Example Configuration"
|
|
|
|
config WIFI_SSID
|
|
string "WiFi SSID"
|
|
default "myssid"
|
|
help
|
|
SSID (network name) for the example to connect to.
|
|
|
|
config WIFI_PASSWORD
|
|
string "WiFi Password"
|
|
default "mypassword"
|
|
help
|
|
WiFi password (WPA or WPA2) for the example to use.
|
|
|
|
Can be left blank if the network has no security set.
|
|
|
|
choice SNTP_TIME_SYNC_METHOD
|
|
prompt "Time synchronization method"
|
|
default SNTP_TIME_SYNC_METHOD_IMMED
|
|
help
|
|
Time synchronization method.
|
|
|
|
config SNTP_TIME_SYNC_METHOD_IMMED
|
|
bool "update time immediately when received"
|
|
config SNTP_TIME_SYNC_METHOD_SMOOTH
|
|
bool "update time with smooth method (adjtime)"
|
|
config SNTP_TIME_SYNC_METHOD_CUSTOM
|
|
bool "custom implementation"
|
|
endchoice
|
|
|
|
endmenu
|