summaryrefslogtreecommitdiffstats
path: root/esp32/main/Kconfig.projbuild.example
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2024-09-08 13:04:22 +0800
committerSadeep Madurange <sadeep@asciimx.com>2024-09-08 13:04:22 +0800
commit407a0b57b93322a47d55ea00bf936bc38572064b (patch)
treed1b5687eaac2252745a8739d1e669dfbc943631c /esp32/main/Kconfig.projbuild.example
parent69d1f009d6e27f8cc98a12bd4b4eac428447751c (diff)
downloadesp32-inmp441-driver-407a0b57b93322a47d55ea00bf936bc38572064b.tar.gz
Build and config fixes.
Diffstat (limited to 'esp32/main/Kconfig.projbuild.example')
-rw-r--r--esp32/main/Kconfig.projbuild.example29
1 files changed, 29 insertions, 0 deletions
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
+