summaryrefslogtreecommitdiff
path: root/firmware/src
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-04-13 21:21:54 +0200
committerxengineering <me@xengineering.eu>2024-04-13 21:21:54 +0200
commitfedaacedd29b4b61fc138e381aad2cf4be08f31d (patch)
treec47a9486e2991e02e257676498aff9014937df38 /firmware/src
parent31bdbcf1a38f0d513ca3327441432a281a5ce6d8 (diff)
downloadiot-core-fedaacedd29b4b61fc138e381aad2cf4be08f31d.tar
iot-core-fedaacedd29b4b61fc138e381aad2cf4be08f31d.tar.zst
iot-core-fedaacedd29b4b61fc138e381aad2cf4be08f31d.zip
firmware: Add minimal Zephyr application
This is enough to validate that the firmware is running by using the Zephyr shell.
Diffstat (limited to 'firmware/src')
-rw-r--r--firmware/src/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/src/main.c b/firmware/src/main.c
new file mode 100644
index 0000000..7a1076c
--- /dev/null
+++ b/firmware/src/main.c
@@ -0,0 +1,6 @@
+#include <zephyr/kernel.h>
+
+int main(void)
+{
+ return 0;
+}