18 lines
327 B
C
18 lines
327 B
C
|
/*
|
||
|
* Copyright (c) 2006-2020, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2020-04-05 bigmagic first version
|
||
|
*/
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
rt_kprintf("ls2k1000:hello rtthread!\n");
|
||
|
return 0;
|
||
|
}
|