From fb9bf2457dae53cd10a916c9beac6d292e28654a Mon Sep 17 00:00:00 2001 From: xengineering Date: Fri, 21 Mar 2025 22:28:09 +0100 Subject: 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. --- fw/src/heart.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 fw/src/heart.h (limited to 'fw/src/heart.h') diff --git a/fw/src/heart.h b/fw/src/heart.h new file mode 100644 index 0000000..cd32c15 --- /dev/null +++ b/fw/src/heart.h @@ -0,0 +1,20 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public License, + * v. 2.0. If a copy of the MPL was not distributed with this file, You can + * obtain one at https://mozilla.org/MPL/2.0/. + */ + +#ifndef SRC_HEART_H +#define SRC_HEART_H + + +#include + + +struct heartbeat { + uint32_t ttl_ms; +}; + +ZBUS_CHAN_DECLARE(heartbeat_channel); + +#endif // !SRC_HEART_H -- cgit v1.2.3-70-g09d2