From 0bfd7efaf4256e4c2821f8796781f0d81ad08251 Mon Sep 17 00:00:00 2001 From: jaseg Date: Tue, 24 Nov 2020 19:00:18 +0100 Subject: Add prototype rotor firmware skeleton --- prototype/fw/src/main.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 prototype/fw/src/main.c (limited to 'prototype/fw/src/main.c') diff --git a/prototype/fw/src/main.c b/prototype/fw/src/main.c new file mode 100644 index 0000000..a6b265b --- /dev/null +++ b/prototype/fw/src/main.c @@ -0,0 +1,12 @@ + +#include + +int main(void) { + while (23) { + } +} + +void __libc_init_array (void) __attribute__((weak)); +void __libc_init_array () +{ +} -- cgit