feat: Implement Ethernet and Wi-Fi network connectivity with LED status indication and configuration.

This commit is contained in:
2026-03-02 16:18:50 -05:00
parent 056c86644f
commit bad32f33ce
5 changed files with 237 additions and 17 deletions

View File

@@ -0,0 +1,27 @@
menu "CalendarInk Network Configuration"
config CALENDINK_WIFI_SSID
string "WiFi SSID"
default ""
help
SSID (network name) for the WiFi connection.
config CALENDINK_WIFI_PASSWORD
string "WiFi Password"
default ""
help
Password for the WiFi connection.
config CALENDINK_ETH_RETRIES
int "Maximum Ethernet Connection Retries"
default 5
help
Number of times to retry the Ethernet connection before falling back to WiFi.
config CALENDINK_WIFI_RETRIES
int "Maximum WiFi Connection Retries"
default 5
help
Number of times to retry the WiFi connection before failing completely.
endmenu