Browse Source

[BSP] remove finsh_system_init declaration in lpc824

Bernard Xiong 7 years ago
parent
commit
616ce9f151
1 changed files with 1 additions and 7 deletions
  1. 1 7
      bsp/lpc824/applications/startup.c

+ 1 - 7
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 ;