rt-thread/bsp/wch/risc-v/ch32v307v-r1/applications/main.c

21 lines
348 B
C

/*
* Copyright (c) 2006-2022, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2022-08-23 liYony first version
*/
#include <rtthread.h>
int main(void)
{
while (1)
{
rt_kprintf("Hello RT-Thread!\n");
rt_thread_mdelay(1000);
}
}