add net apps to mini2440 project
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@294 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
582dd70930
commit
25220a4a32
|
@ -33,6 +33,7 @@ if rtconfig.RT_USING_DFS:
|
|||
|
||||
if rtconfig.RT_USING_LWIP:
|
||||
objs = objs + SConscript(RTT_ROOT + '/net/lwip/SConscript', variant_dir='build/net/lwip', duplicate=0)
|
||||
objs = objs + SConscript(RTT_ROOT + '/net/apps/SConscript', variant_dir='build/net/apps', duplicate=0)
|
||||
|
||||
if rtconfig.RT_USING_RTGUI:
|
||||
objs = objs + SConscript(RTT_ROOT + '/rtgui/SConscript', variant_dir='build/rtgui', duplicate=0)
|
||||
|
|
|
@ -591,10 +591,10 @@ void rt_hw_dm9000_init()
|
|||
/* Enable EINT7 */
|
||||
EINTMASK = EINTMASK & (~(1<<7));
|
||||
/* Set GPA15 as nGCS4 */
|
||||
//GPACON |= 1 << 15;
|
||||
GPACON |= 1 << 15;
|
||||
/* DM9000 width 16, wait enable */
|
||||
//BWSCON = BWSCON & (~(0x7<<16)) | (0x5<<16);
|
||||
//BANKCON4 = (1<<13) | (1<<11) | (0x6<<8) | (1<<6) | (1<<4) | (0<<2) | (0);
|
||||
BWSCON = BWSCON & (~(0x7<<16)) | (0x5<<16);
|
||||
BANKCON4 = (1<<13) | (1<<11) | (0x6<<8) | (1<<6) | (1<<4) | (0<<2) | (0);
|
||||
|
||||
rt_sem_init(&sem_ack, "tx_ack", 1, RT_IPC_FLAG_FIFO);
|
||||
rt_sem_init(&sem_lock, "eth_lock", 1, RT_IPC_FLAG_FIFO);
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
Import('env')
|
||||
Import('rtconfig')
|
||||
Import('RTT_ROOT')
|
||||
|
||||
# The set of source files associated with this SConscript file.
|
||||
src_local = Glob('*.c')
|
||||
|
||||
obj = env.Object(src_local)
|
||||
|
||||
Return('obj')
|
Loading…
Reference in New Issue