rt-thread/bsp/ls2kdev/applications/main.c

18 lines
327 B
C
Raw Normal View History

2020-04-05 13:29:29 +08:00
/*
* 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;
}