1
0
mirror of https://github.com/CovidBraceletPrj/CovidBracelet.git synced 2024-06-15 00:49:57 +02:00
CovidBracelet/src/main_test.c

19 lines
255 B
C
Raw Normal View History

2022-05-25 22:08:36 +02:00
/* main.c - Application main entry point */
/*
* Copyright (c) 2020 Olaf Landsiedel
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr.h>
#include <sys/printk.h>
void main(void) {
while(1) {
printk("Hello World!\n");
}
}