Added lwip header file.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2071 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong@gmail.com 2012-04-15 13:03:20 +00:00
parent 3ec34b8f22
commit 372332dd0e
2 changed files with 9 additions and 4 deletions

View File

@ -1,8 +1,8 @@
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('ComponentsInit', src, depend = ['RT_USING_COMPONENTS_INIT'], CPPPATH = CPPPATH)
group = DefineGroup('Components', src, depend = ['RT_USING_COMPONENTS_INIT'], CPPPATH = CPPPATH)
Return('group')

View File

@ -1,10 +1,15 @@
#include <rtthread.h>
#include "components_init.h"
#ifdef RT_USING_FINSH
#include <finsh.h>
#include <shell.h>
#endif
#ifdef RT_USING_LWIP
#include <lwip/sys.h>
#include <lwip/api.h>
#include <netif/ethernetif.h>
extern void lwip_system_init(void);
#endif
#ifdef RT_USING_DFS
@ -60,7 +65,7 @@ void rt_components_init(void)
eth_system_device_init();
/* initialize lwip system */
lwip_sys_init();
lwip_system_init();
rt_kprintf("TCP/IP initialized!\n");
#endif