update lpc176x project.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1123 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
6237d0538c
commit
baf30c5f3c
|
@ -435,7 +435,7 @@ struct pbuf *lpc17xx_emac_rx(rt_device_t dev)
|
||||||
|
|
||||||
void lpc17xx_emac_hw_init(void)
|
void lpc17xx_emac_hw_init(void)
|
||||||
{
|
{
|
||||||
rt_sem_init(&sem_slot, "tx_slot", NUM_TX_FRAG, RT_IPC_FLAG_FIFO);
|
rt_sem_init(&sem_slot, "tx_slot", NUM_TX_FRAG, RT_IPC_FLAG_FIFO);
|
||||||
rt_sem_init(&sem_lock, "eth_lock", 1, RT_IPC_FLAG_FIFO);
|
rt_sem_init(&sem_lock, "eth_lock", 1, RT_IPC_FLAG_FIFO);
|
||||||
|
|
||||||
/* set autonegotiation mode */
|
/* set autonegotiation mode */
|
||||||
|
|
|
@ -203,7 +203,7 @@ Options 1,0,0 // Target 'RT-Thread LPC17xx'
|
||||||
ADSLDIF ()
|
ADSLDIF ()
|
||||||
ADSLDDW ()
|
ADSLDDW ()
|
||||||
OPTDL (SARMCM3.DLL)(-MPU)(DARMP1.DLL)(-pLPC1768)(SARMCM3.DLL)(-MPU)(TARMP1.DLL)(-pLPC1768)
|
OPTDL (SARMCM3.DLL)(-MPU)(DARMP1.DLL)(-pLPC1768)(SARMCM3.DLL)(-MPU)(TARMP1.DLL)(-pLPC1768)
|
||||||
OPTDBG 48126,7,()()()()()()()()()() (Segger\JL2CM3.dll)()()()
|
OPTDBG 49150,7,()()()()()()()()()() (Segger\JL2CM3.dll)()()()
|
||||||
FLASH1 { 9,0,0,0,1,0,0,0,6,16,0,0,0,0,0,0,0,0,0,0 }
|
FLASH1 { 9,0,0,0,1,0,0,0,6,16,0,0,0,0,0,0,0,0,0,0 }
|
||||||
FLASH2 (Segger\JL2CM3.dll)
|
FLASH2 (Segger\JL2CM3.dll)
|
||||||
FLASH3 ("" ())
|
FLASH3 ("" ())
|
||||||
|
|
|
@ -5,11 +5,10 @@ CROSS_TOOL='keil'
|
||||||
|
|
||||||
if CROSS_TOOL == 'gcc':
|
if CROSS_TOOL == 'gcc':
|
||||||
PLATFORM = 'gcc'
|
PLATFORM = 'gcc'
|
||||||
EXEC_PATH = 'D:/SourceryGCC/bin'
|
EXEC_PATH = 'E:/Program Files/CodeSourcery/Sourcery G++ Lite/bin'
|
||||||
elif CROSS_TOOL == 'keil':
|
elif CROSS_TOOL == 'keil':
|
||||||
PLATFORM = 'armcc'
|
PLATFORM = 'armcc'
|
||||||
EXEC_PATH = 'E:/Keil'
|
EXEC_PATH = 'E:/Keil'
|
||||||
|
|
||||||
BUILD = 'debug'
|
BUILD = 'debug'
|
||||||
|
|
||||||
if PLATFORM == 'gcc':
|
if PLATFORM == 'gcc':
|
||||||
|
@ -48,7 +47,7 @@ elif PLATFORM == 'armcc':
|
||||||
LINK = 'armlink'
|
LINK = 'armlink'
|
||||||
TARGET_EXT = 'axf'
|
TARGET_EXT = 'axf'
|
||||||
|
|
||||||
DEVICE = ' --device DARMSTM'
|
DEVICE = ' --device DARMP1'
|
||||||
CFLAGS = DEVICE + ' --apcs=interwork'
|
CFLAGS = DEVICE + ' --apcs=interwork'
|
||||||
AFLAGS = DEVICE
|
AFLAGS = DEVICE
|
||||||
LFLAGS = DEVICE + ' --info sizes --info totals --info unused --info veneers --list rtthread-lpc17xx.map --scatter lpc17xx_rom.sct'
|
LFLAGS = DEVICE + ' --info sizes --info totals --info unused --info veneers --list rtthread-lpc17xx.map --scatter lpc17xx_rom.sct'
|
||||||
|
@ -74,7 +73,7 @@ elif PLATFORM == 'iar':
|
||||||
LINK = 'ilinkarm'
|
LINK = 'ilinkarm'
|
||||||
TARGET_EXT = 'out'
|
TARGET_EXT = 'out'
|
||||||
|
|
||||||
DEVICE = ' --cpu DARMSTM --thumb'
|
DEVICE = ' --cpu DARMP1 --thumb'
|
||||||
|
|
||||||
CFLAGS = ''
|
CFLAGS = ''
|
||||||
AFLAGS = ''
|
AFLAGS = ''
|
||||||
|
|
Loading…
Reference in New Issue