Support ethernet and mbed client

pull/2238/head
cyliangtw 2016-07-23 21:51:48 +08:00 committed by ccli8
parent 41242e3d55
commit 56678473cd
3 changed files with 5 additions and 3 deletions

View File

@ -1960,6 +1960,7 @@
"supported_toolchains": ["ARM", "uARM", "GCC_ARM", "IAR"], "supported_toolchains": ["ARM", "uARM", "GCC_ARM", "IAR"],
"inherits": ["Target"], "inherits": ["Target"],
"progen": {"target": "numaker-pfm-nuc472"}, "progen": {"target": "numaker-pfm-nuc472"},
"device_has": ["ANALOGIN", "I2C", "I2CSLAVE", "I2C_ASYNCH", "INTERRUPTIN", "LOWPOWERTIMER", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SERIAL_ASYNCH", "SERIAL_FC", "SLEEP", "SPI", "SPISLAVE", "SPI_ASYNCH"] "device_has": ["ANALOGIN", "I2C", "I2CSLAVE", "I2C_ASYNCH", "INTERRUPTIN", "LOWPOWERTIMER", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SERIAL_ASYNCH", "SERIAL_FC", "SLEEP", "SPI", "SPISLAVE", "SPI_ASYNCH"],
"features": ["IPV4"]
} }
} }

View File

@ -22,7 +22,7 @@ LR_IROM1 0x00000000 {
; Too large to place into internal SRAM. So place into external SRAM instead. ; Too large to place into internal SRAM. So place into external SRAM instead.
ER_XRAM1 0x60000000 { ER_XRAM1 0x60000000 {
*sal-stack-lwip* (+ZI) *lwip_* (+ZI)
} }
; Extern SRAM for HEAP ; Extern SRAM for HEAP

View File

@ -235,7 +235,8 @@ SECTIONS
* Place large .bss* sections into external SRAM if internal SRAM is insufficient. * Place large .bss* sections into external SRAM if internal SRAM is insufficient.
* Such memory arrangement requires initializing .bss.extern section to zero in startup file. Check startup fiile in cmsis-core-* for support or not. * Such memory arrangement requires initializing .bss.extern section to zero in startup file. Check startup fiile in cmsis-core-* for support or not.
*/ */
/* E.g.: ym/sal-stack-lwip/source/sal-stack-lwip.a(.bss*) */ *lwip_*.o(.bss*)
*lwip_*.o(COMMON)
__bss_extern_end__ = .; __bss_extern_end__ = .;
} > RAM_EXTERN } > RAM_EXTERN