Files
rt-thread/bsp/ultrarisc/ur_dp1000_evb/applications/main.c
2025-05-30 14:06:33 +08:00

20 lines
337 B
C

/*
* Copyright (c) 2006-2025 RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2025-01-22 ZhangJing first version
*/
#include <stdio.h>
#include <string.h>
#include <rtthread.h>
int main(void)
{
rt_kprintf("Hello RT-Thread\n");
return 0;
}