2021-08-06 18:35:58 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2022-12-20 17:49:37 +08:00
|
|
|
* 2020/10/7 bernard the first version
|
2021-08-06 18:35:58 +08:00
|
|
|
*/
|
|
|
|
|
2024-03-02 16:05:19 +08:00
|
|
|
#include <rtthread.h>
|
2021-08-06 18:35:58 +08:00
|
|
|
|
2022-12-20 17:49:37 +08:00
|
|
|
int main(void)
|
2021-08-06 18:35:58 +08:00
|
|
|
{
|
2024-03-02 16:05:19 +08:00
|
|
|
rt_kprintf("hello rt-thread\n");
|
2021-08-06 18:35:58 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|