Initial project creation, blank without any custom code

This commit is contained in:
Matthias Mitscherlich
2023-01-12 19:54:39 +01:00
commit e27fe1ebfe
9 changed files with 97 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdbool.h>
#include <unistd.h>
void app_main(void)
{
while (true) {
printf("Hello from app_main!\n");
sleep(1);
}
}