diff options
author | xengineering <me@xengineering.eu> | 2025-03-21 22:28:09 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-03-21 22:28:09 +0100 |
commit | fb9bf2457dae53cd10a916c9beac6d292e28654a (patch) | |
tree | 41073c75c82c59ae86d69d6a172852132629ad84 /fw/prj.conf | |
parent | 61e108a0ae856b3e1c849482d0008f698d41db27 (diff) | |
download | iot-contact-fb9bf2457dae53cd10a916c9beac6d292e28654a.tar iot-contact-fb9bf2457dae53cd10a916c9beac6d292e28654a.tar.zst iot-contact-fb9bf2457dae53cd10a916c9beac6d292e28654a.zip |
fw: heart: Add zbus-based heartbeat code
The heartbeat of the firmware might be used for multiple purposes. It
can trigger a blinking LED on the PCB, can be displayed in a client
program or might serve additional purposes.
Since at least display in client programs should be implemented and
multiple clients should be support in long term it improves the code
structure to use a zbus channel here to publish heartbeat messages in a
publish-subscribe pattern.
That way the publishing of the heartbeat message and the receiving by an
unknown number of observers is completely decoupled. A central trait of
the publish-subscribe pattern and an advantage for a modular code
structure.
Diffstat (limited to 'fw/prj.conf')
-rw-r--r-- | fw/prj.conf | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/fw/prj.conf b/fw/prj.conf index bd761fc..7984caa 100644 --- a/fw/prj.conf +++ b/fw/prj.conf @@ -20,10 +20,15 @@ CONFIG_LOG_MODE_DEFERRED=y CONFIG_POSIX_C_LANG_SUPPORT_R=y -CONFIG_HTTP_SERVER=y CONFIG_HTTP_PARSER=y CONFIG_HTTP_PARSER_URL=y +CONFIG_HTTP_SERVER=y + CONFIG_FILE_SYSTEM=y CONFIG_EVENTFD=y + +CONFIG_ZBUS=y +CONFIG_ZBUS_MSG_SUBSCRIBER=y +CONFIG_HEAP_MEM_POOL_SIZE=2048 |