dbortoluzzi / mpai-aif-v1

MPAI-AIF v1.0 implementation for the ST IoT NODE B-L475E-IOT01A (based on PlatformIO)
Other
1 stars 1 forks source link

WiFi SSID and PSKD are mandatory but the README suggests they are optional #17

Open Stefan-Schmidt opened 2 years ago

Stefan-Schmidt commented 2 years ago

When building the application I was under the assumption that the wifi config part is optional as the README state "Configure WLAN (if requested)". It need to be configured though for the build to pass.

Later down the road this would be a device specific (e.g. if the device has wifi) connectivity option. Zephyr does already offer somethign in that regard. Did you run into problem when using Zephyr KConfig for this purpose?

dbortoluzzi commented 2 years ago

We can add a zephyr configuration on Kconfig (like APP_WIFI_AUTOCONNECT) to enable the autoconfiguration of the wifi and import the conf files only if wifi is enabled. What do you think about?

Daniele