rt-thread-official/bsp/lpc408x/applications/main.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;
}