From 616ce9f1519f86b96c7567f79088b23fb08440f4 Mon Sep 17 00:00:00 2001 From: Bernard Xiong Date: Sun, 10 Dec 2017 10:33:46 +0800 Subject: [PATCH] [BSP] remove finsh_system_init declaration in lpc824 --- bsp/lpc824/applications/startup.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/bsp/lpc824/applications/startup.c b/bsp/lpc824/applications/startup.c index 35a9784e9..15c949df7 100644 --- a/bsp/lpc824/applications/startup.c +++ b/bsp/lpc824/applications/startup.c @@ -26,11 +26,6 @@ /*@{*/ extern int rt_application_init(void); -#ifdef RT_USING_FINSH -extern int finsh_system_init(void); -extern void finsh_set_device(const char* device); -#endif - /******************************************************************************* * Function Name : assert_failed @@ -87,8 +82,7 @@ void rtthread_startup(void) rt_thread_idle_init(); /* start scheduler */ - -rt_system_scheduler_start(); + rt_system_scheduler_start(); /* never reach here */ return ; -- GitLab