1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2008-12-11 xuxinming the first version 9 */ 10 11 #include <rtthread.h> 12 13 #ifdef RT_USING_FINSH 14 #include <shell.h> 15 #include <finsh.h> 16 #endif 17 18 /** 19 * @addtogroup LPC2478 20 */ 21 /*@{*/ rt_application_init()22int rt_application_init() 23 { 24 #ifdef RT_USING_FINSH 25 /* init finsh */ 26 finsh_system_init(); 27 #endif 28 29 return 0; 30 } 31 32 /*@}*/ 33