1 /* 2 * Copyright (c) 2021 Rockchip Electronics Co., Ltd. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2021-10-12 Steven Liu the first version 9 */ 10 #include <rtthread.h> 11 #include <rtdevice.h> 12 main(int argc,char ** argv)13int main(int argc, char **argv) 14 { 15 rt_kprintf("Hello RK2108 RT-Thread!\n"); 16 17 return RT_EOK; 18 } 19 _start()20void _start() 21 { 22 extern int rtthread_startup(void); 23 24 rtthread_startup(); 25 } 26