new settings for menuconfig

Signed-off-by: Peter Siegmund <peter@rdkr.com>
This commit is contained in:
Peter Siegmund
2024-06-13 15:01:25 +02:00
parent 7ac93829f3
commit 79612d43a7

View File

@@ -1,4 +1,5 @@
menu "WiFi Configuration Options"
menu "Tide Display Setting"
menu "WiFi Configuration"
config WIFI_SSID
string "WIFI SSID"
default "ssid"
@@ -13,7 +14,36 @@ menu "WiFi Configuration Options"
config ESP_MAXIMUM_RETRY
int "Maximum retry"
range 1 10
default 5
help
Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent.
Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really
inexistent.
endmenu
menu "Map"
choice "Map Provider"
prompt "Map Provider"
default PROVIDER_GOOGLE
help
Select the provider of map to use.
config PROVIDER_GOOGLE
bool "Google Maps"
help
Use Google Maps as map provider.
config PROVIDER_MAPBOX
bool "MapBox"
help
Use MapBox as map provider.
endchoice
config GOOGLE_MAP_ID
string "Google Map ID"
default "2f371c2346218fe8"
depends on PROVIDER_GOOGLE
help
Map ID of the Google Maps Style.
endmenu
endmenu