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

18 lines
323 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>
2020-12-07 20:40:43 +08:00
int main(int argc, char **argv)
{
2020-04-07 11:26:30 +08:00
rt_kprintf("Hi, this is RT-Thread!!\n");
2020-04-05 13:29:29 +08:00
return 0;
}