summaryrefslogtreecommitdiff
path: root/fw/app/Kconfig
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-04-02 20:43:29 +0200
committerxengineering <me@xengineering.eu>2025-04-02 20:43:29 +0200
commitd19fc7e34f783b343e77b757c4f37aaadb5b66ca (patch)
treed90a0e37899f9852f43f9f96bd57127ca0c8b70e /fw/app/Kconfig
parentbd4b1f9eaf19dfc6f8fa6a7770f222582125326d (diff)
downloadiot-contact-d19fc7e34f783b343e77b757c4f37aaadb5b66ca.tar
iot-contact-d19fc7e34f783b343e77b757c4f37aaadb5b66ca.tar.zst
iot-contact-d19fc7e34f783b343e77b757c4f37aaadb5b66ca.zip
fw: app: Fix native_sim buildHEADmain
To reduce the number of Kconfig options the network hack was added two both boards - the native_sim and nucleo_f767zi one. It reboots the device if the network connection cannot be established since this is a known bug of the nucleo board. Nevertheless it seems that for the native_sim board this command is not defined. Since it is a Linux application this makes somehow sense. This commit introduces the boolean Kconfig option `IOT_CONTACT_NETWORK_HACK` which is only enabled for the nucleo board fixing the native_sim build.
Diffstat (limited to 'fw/app/Kconfig')
-rw-r--r--fw/app/Kconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/fw/app/Kconfig b/fw/app/Kconfig
index 5393e05..3481340 100644
--- a/fw/app/Kconfig
+++ b/fw/app/Kconfig
@@ -2,4 +2,8 @@ config IOT_CONTACT_REMOTE_UPDATE
bool "Enable the remote update system"
default n
+config IOT_CONTACT_NETWORK_HACK
+ bool "Reboots after a fixed timeout if network connection cannot be established"
+ default n
+
source "Kconfig.zephyr"