CovidBracelet/src/main_test.c

19 lines
283 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_test(void) {
2022-05-25 22:08:36 +02:00
while(1) {
printk("Hello World!\n");
k_msleep(1000);
2022-05-25 22:08:36 +02:00
}
}