aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorVictor Mignot <victor@vmignot.fr>2026-02-02 20:17:04 +0100
committerVictor Mignot <victor@vmignot.fr>2026-02-02 20:17:04 +0100
commitfb859c9c85688d1a144b732cf688746f2651be40 (patch)
treec666b23a1f865945a224c2b2f1026f0227141135 /src/main.c
downloadnanji-fb859c9c85688d1a144b732cf688746f2651be40.tar.gz
nrf52832: bootstrap and init the CLOCK device
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..aab0723
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,7 @@
+#include "clock.h"
+
+void main() {
+ init_clock();
+
+ while (1) {}
+}