summaryrefslogtreecommitdiff
path: root/firmware/src/main.c
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-04-14 17:13:52 +0200
committerxengineering <me@xengineering.eu>2024-04-14 17:13:52 +0200
commitc852c3e4047b0a31910bf89436d620281a508029 (patch)
treef02e1b1f403cc262db100abbd9a283a9eeff6974 /firmware/src/main.c
parentf950daa67777b79037cf545111d4348cfeba3c0e (diff)
downloadiot-contact-c852c3e4047b0a31910bf89436d620281a508029.tar
iot-contact-c852c3e4047b0a31910bf89436d620281a508029.tar.zst
iot-contact-c852c3e4047b0a31910bf89436d620281a508029.zip
fw: Add basic Zephyr application firmware
This is enough to validate that the firmware is running by using the integrated Zephyr shell.
Diffstat (limited to 'firmware/src/main.c')
-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;
+}