CovidBracelet/src/main_test.c

19 lines
283 B
C

/* 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) {
while(1) {
printk("Hello World!\n");
k_msleep(1000);
}
}