fix compile error

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-09-13 20:58:44 +02:00
parent 59f2d3f83a
commit 5d553c0fbb
4 changed files with 12 additions and 3 deletions

View File

@@ -1,18 +1,27 @@
menu "System Control"
menu "WiFi Configuration"
config WIFI_ENABLED
bool "Enable WiFi"
default y
help
Enable or disable WiFi connectivity.
config WIFI_SSID
depends on WIFI_ENABLED
string "WiFi SSID"
default "YourSSID"
help
The SSID of the WiFi network to connect to.
config WIFI_PASSWORD
depends on WIFI_ENABLED
string "WiFi Password"
default "YourPassword"
help
The password of the WiFi network to connect to.
config WIFI_CONNECT_RETRIES
depends on WIFI_ENABLED
int "WiFi Connection Retry Attempts"
default 5
help