提交 372332dd 编写于 作者: B bernard.xiong@gmail.com

Added lwip header file.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2071 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 3ec34b8f
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')
#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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册