[BSP] remove COMPONENTS_INIT for lpc176x and stm32f107 porting.

This commit is contained in:
bernard 2014-07-19 06:51:43 +08:00
parent 26118499e0
commit 21b9e64cd6
4 changed files with 80 additions and 42 deletions

View File

@ -19,14 +19,20 @@
#include <rtthread.h> #include <rtthread.h>
#include "platform.h" #include "platform.h"
#ifdef RT_USING_COMPONENTS_INIT
#include <components.h>
#endif
#ifdef RT_USING_LWIP #ifdef RT_USING_LWIP
#include <emac.h> #include <emac.h>
#include <netif/ethernetif.h>
extern int lwip_system_init(void);
#endif #endif
#ifdef RT_USING_DFS #ifdef RT_USING_DFS
#include <dfs_fs.h> #include <dfs_fs.h>
#include <sd.h>
#endif
#ifdef RT_USING_FINSH
#include <shell.h>
#include <finsh.h>
#endif #endif
/* thread phase init */ /* thread phase init */
@ -38,21 +44,39 @@ void rt_init_thread_entry(void *parameter)
#ifdef RT_USING_LWIP #ifdef RT_USING_LWIP
/* register Ethernet interface device */ /* register Ethernet interface device */
lpc17xx_emac_hw_init(); lpc17xx_emac_hw_init();
#endif
#ifdef RT_USING_COMPONENTS_INIT /* initialize lwip stack */
/* initialization RT-Thread Components */ /* register ethernetif device */
rt_components_init(); eth_system_device_init();
/* initialize lwip system */
lwip_system_init();
rt_kprintf("TCP/IP initialized!\n");
#endif #endif
/* Filesystem Initialization */ /* Filesystem Initialization */
#ifdef RT_USING_DFS #ifdef RT_USING_DFS
rt_hw_sdcard_init();
/* initialize the device file system */
dfs_init();
#ifdef RT_USING_DFS_ELMFAT
/* initialize the elm chan FatFS file system*/
elm_init();
#endif
/* mount sd card fat partition 1 as root directory */ /* mount sd card fat partition 1 as root directory */
if (dfs_mount("sd0", "/", "elm", 0, 0) == 0) if (dfs_mount("sd0", "/", "elm", 0, 0) == 0)
rt_kprintf("File System initialized!\n"); rt_kprintf("File System initialized!\n");
else else
rt_kprintf("File System init failed!\n"); rt_kprintf("File System init failed!\n");
#endif #endif
#ifdef RT_USING_FINSH
/* initialize finsh */
finsh_system_init();
#endif
} }
int rt_application_init() int rt_application_init()

View File

@ -78,7 +78,7 @@
// </section> // </section>
// <bool name="RT_USING_COMPONENTS_INIT" description="Using RT-Thread components initialization" default="true" /> // <bool name="RT_USING_COMPONENTS_INIT" description="Using RT-Thread components initialization" default="true" />
#define RT_USING_COMPONENTS_INIT // #define RT_USING_COMPONENTS_INIT
// <section name="RT_USING_FINSH" description="Using finsh as shell, which is a C-Express shell" default="true" > // <section name="RT_USING_FINSH" description="Using finsh as shell, which is a C-Express shell" default="true" >
#define RT_USING_FINSH #define RT_USING_FINSH
// <bool name="FINSH_USING_SYMTAB" description="Using symbol table in finsh shell" default="true" /> // <bool name="FINSH_USING_SYMTAB" description="Using symbol table in finsh shell" default="true" />

View File

@ -22,11 +22,20 @@
#ifdef RT_USING_DFS #ifdef RT_USING_DFS
#include <dfs_fs.h> #include <dfs_fs.h>
#include <dfs_init.h>
#include <dfs_elm.h>
#endif #endif
#ifdef RT_USING_COMPONENTS_INIT #ifdef RT_USING_LWIP
#include <components.h> #include <stm32_eth.h>
#endif /* RT_USING_COMPONENTS_INIT */ #include <netif/ethernetif.h>
extern int lwip_system_init(void);
#endif
#ifdef RT_USING_FINSH
#include <shell.h>
#include <finsh.h>
#endif
void rt_init_thread_entry(void* parameter) void rt_init_thread_entry(void* parameter)
{ {
@ -35,45 +44,50 @@ void rt_init_thread_entry(void* parameter)
rt_platform_init(); rt_platform_init();
} }
#ifdef RT_USING_COMPONENTS_INIT
/* initialization RT-Thread Components */
rt_components_init();
#endif
/* Filesystem Initialization */ /* Filesystem Initialization */
#if defined(RT_USING_DFS) && defined(RT_USING_DFS_ELMFAT) #if defined(RT_USING_DFS) && defined(RT_USING_DFS_ELMFAT)
/* initialize the device file system */
dfs_init();
/* initialize the elm chan FatFS file system*/
elm_init();
/* mount sd card fat partition 1 as root directory */
if (dfs_mount("sd0", "/", "elm", 0, 0) == 0)
{ {
/* mount sd card fat partition 1 as root directory */ rt_kprintf("File System initialized!\n");
if (dfs_mount("sd0", "/", "elm", 0, 0) == 0) }
{ else
rt_kprintf("File System initialized!\n"); {
} rt_kprintf("File System initialzation failed!\n");
else
{
rt_kprintf("File System initialzation failed!\n");
}
} }
#endif /* RT_USING_DFS && RT_USING_DFS_ELMFAT */ #endif /* RT_USING_DFS && RT_USING_DFS_ELMFAT */
#ifdef RT_USING_LWIP
/* initialize lwip stack */
/* register ethernetif device */
eth_system_device_init();
/* initialize lwip system */
lwip_system_init();
rt_kprintf("TCP/IP initialized!\n");
#endif
#ifdef RT_USING_FINSH
/* initialize finsh */
finsh_system_init();
finsh_set_device(RT_CONSOLE_DEVICE_NAME);
#endif
} }
int rt_application_init(void) int rt_application_init(void)
{ {
rt_thread_t init_thread; rt_thread_t tid;
#if (RT_THREAD_PRIORITY_MAX == 32) tid = rt_thread_create("init",
init_thread = rt_thread_create("init", rt_init_thread_entry, RT_NULL,
rt_init_thread_entry, RT_NULL, 2048, RT_THREAD_PRIORITY_MAX/3, 20);
2048, 8, 20); if (tid != RT_NULL) rt_thread_startup(tid);
#else
init_thread = rt_thread_create("init",
rt_init_thread_entry, RT_NULL,
2048, 80, 20);
#endif
if (init_thread != RT_NULL)
{
rt_thread_startup(init_thread);
}
return 0; return 0;
} }

View File

@ -69,8 +69,8 @@
#define RT_CONSOLE_DEVICE_NAME "uart1" #define RT_CONSOLE_DEVICE_NAME "uart1"
// </section> // </section>
// <section name="RT_USING_COMPONENTS_INIT" description="Using components init" default="true" > // <section name="RT_USING_COMPONENTS_INIT" description="Using components init" default="false" >
#define RT_USING_COMPONENTS_INIT // #define RT_USING_COMPONENTS_INIT
// </section> // </section>
/* SECTION: finsh, a C-Express shell */ /* SECTION: finsh, a C-Express shell */