From 407a0b57b93322a47d55ea00bf936bc38572064b Mon Sep 17 00:00:00 2001 From: Sadeep Madurange Date: Sun, 8 Sep 2024 13:04:22 +0800 Subject: Build and config fixes. --- esp32/main/Kconfig.projbuild.example | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 esp32/main/Kconfig.projbuild.example (limited to 'esp32/main/Kconfig.projbuild.example') diff --git a/esp32/main/Kconfig.projbuild.example b/esp32/main/Kconfig.projbuild.example new file mode 100644 index 0000000..9c03e2b --- /dev/null +++ b/esp32/main/Kconfig.projbuild.example @@ -0,0 +1,29 @@ +menu "Mimir Configuration" + + config WIFI_SSID + string "WiFi SSID" + default "" + help + SSID (network name) for the example to connect to. + + config WIFI_PASS + string "WiFi Password" + default "" + help + WiFi password (WPA or WPA2) for the example to use. + + config UDP_ADDR + string "IPV4 Address" + default "" + help + IPV4 address to which the client example will send data. + + config UDP_PORT + int "Port" + range 0 65535 + default 3333 + help + The remote port to which the client example will send data. + +endmenu + -- cgit v1.2.3