Update application.c
This commit is contained in:
parent
7c4a416e35
commit
584efccad1
|
@ -14,7 +14,11 @@
|
||||||
|
|
||||||
#include <rtthread.h>
|
#include <rtthread.h>
|
||||||
|
|
||||||
#include <board.h>
|
#ifdef RT_USING_FINSH
|
||||||
|
#include <shell.h>
|
||||||
|
#include <finsh.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef RT_USING_COMPONENTS_INIT
|
#ifdef RT_USING_COMPONENTS_INIT
|
||||||
#include <components.h>
|
#include <components.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -25,12 +29,8 @@ void rt_init_thread_entry(void *parameter)
|
||||||
/* Initialization RT-Thread Components */
|
/* Initialization RT-Thread Components */
|
||||||
#ifdef RT_USING_COMPONENTS_INIT
|
#ifdef RT_USING_COMPONENTS_INIT
|
||||||
rt_components_init();
|
rt_components_init();
|
||||||
#endif
|
#elif defined(RT_USING_FINSH)
|
||||||
|
|
||||||
#ifdef RT_USING_FINSH
|
|
||||||
/* initialize finsh */
|
|
||||||
finsh_system_init();
|
finsh_system_init();
|
||||||
finsh_set_device(FINSH_DEVICE_NAME);
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue