summaryrefslogtreecommitdiff
path: root/firmware/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/src/main.c')
-rw-r--r--firmware/src/main.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/firmware/src/main.c b/firmware/src/main.c
new file mode 100644
index 0000000..3566e33
--- /dev/null
+++ b/firmware/src/main.c
@@ -0,0 +1,21 @@
+/*
+ * Copyright (c) 2026 Apidae Systems
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ */
+
+#include <zephyr/kernel.h>
+#include <zephyr/logging/log.h>
+
+LOG_MODULE_REGISTER(main, LOG_LEVEL_INF);
+
+int main(void)
+{
+ LOG_INF("Walter is alive");
+
+ while (1) {
+ k_sleep(K_SECONDS(1));
+ }
+
+ return 0;
+}