rt-thread-official/bsp/simulator/applications/application.c

19 lines
341 B
C
Raw Normal View History

2013-01-08 22:40:58 +08:00
/*
* Copyright (c) 2006-2021, RT-Thread Development Team
2013-01-08 22:40:58 +08:00
*
* SPDX-License-Identifier: Apache-2.0
2013-01-08 22:40:58 +08:00
*
* Change Logs:
* Date Author Notes
* 2009-01-05 Bernard the first version
*/
#include <rtthread.h>
#include <stdio.h>
#include <board.h>
int main(void)
2013-01-08 22:40:58 +08:00
{
2017-10-20 13:26:47 +08:00
rt_kprintf("Hello RT-Thread!\n");
2013-01-08 22:40:58 +08:00
return 0;
}