2013-01-08 22:40:58 +08:00
|
|
|
/*
|
2021-03-20 22:39:00 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2013-01-08 22:40:58 +08:00
|
|
|
*
|
2021-03-20 22:39:00 +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>
|
|
|
|
|
2021-03-31 21:38:19 +08:00
|
|
|
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;
|
|
|
|
}
|