summaryrefslogtreecommitdiff
path: root/fw/src/firmware.c
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-03-22 21:21:44 +0100
committerxengineering <me@xengineering.eu>2025-03-22 21:21:44 +0100
commit0c771fb52f864c867d2fcff795e4d3ebd8de1c7c (patch)
treeac6bf864270be669b73997e5a3e14edf6708de12 /fw/src/firmware.c
parent9f2ce4cc9ba9ad45a7e88247f8c1fb0953717b0e (diff)
downloadiot-contact-0c771fb52f864c867d2fcff795e4d3ebd8de1c7c.tar
iot-contact-0c771fb52f864c867d2fcff795e4d3ebd8de1c7c.tar.zst
iot-contact-0c771fb52f864c867d2fcff795e4d3ebd8de1c7c.zip
fw: firmware: Add app build version output
Diffstat (limited to 'fw/src/firmware.c')
-rw-r--r--fw/src/firmware.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/fw/src/firmware.c b/fw/src/firmware.c
new file mode 100644
index 0000000..9c0fa16
--- /dev/null
+++ b/fw/src/firmware.c
@@ -0,0 +1,19 @@
+/*
+ * 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/.
+ */
+
+#include <zephyr/app_version.h>
+#include <zephyr/init.h>
+#include <zephyr/logging/log.h>
+
+LOG_MODULE_REGISTER(firmware);
+
+int firmware_log_metadata(void)
+{
+ LOG_INF("App build version: %s", STRINGIFY(APP_BUILD_VERSION));
+
+ return 0;
+}
+SYS_INIT(firmware_log_metadata, APPLICATION, 0);