2020-12-31 09:48:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2020, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2020/12/31 Bernard Add license info
|
|
|
|
*/
|
|
|
|
|
2017-09-19 12:14:52 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
2024-02-23 17:49:15 +08:00
|
|
|
#include <rtthread.h>
|
2017-09-19 12:14:52 +08:00
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2024-02-23 17:49:15 +08:00
|
|
|
rt_kprintf("Hello RT-Thread!\n");
|
2017-09-19 12:14:52 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|