mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 23:09:36 +08:00
20 lines
330 B
C
20 lines
330 B
C
/*
|
|
* Copyright (c) 2006-2018, Synwit Technology Co.,Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2018-12-10 armink first version
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
|
|
int main(void)
|
|
{
|
|
rt_kprintf("Hello RT-Thread!\n");
|
|
|
|
return RT_EOK;
|
|
}
|