Skip to content

Commit 5667847

Browse files
cyliangtwccli8
authored andcommitted
Support ethernet and mbed client
1 parent 41242e3 commit 5667847

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

hal/targets.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1960,6 +1960,7 @@
19601960
"supported_toolchains": ["ARM", "uARM", "GCC_ARM", "IAR"],
19611961
"inherits": ["Target"],
19621962
"progen": {"target": "numaker-pfm-nuc472"},
1963-
"device_has": ["ANALOGIN", "I2C", "I2CSLAVE", "I2C_ASYNCH", "INTERRUPTIN", "LOWPOWERTIMER", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SERIAL_ASYNCH", "SERIAL_FC", "SLEEP", "SPI", "SPISLAVE", "SPI_ASYNCH"]
1963+
"device_has": ["ANALOGIN", "I2C", "I2CSLAVE", "I2C_ASYNCH", "INTERRUPTIN", "LOWPOWERTIMER", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SERIAL_ASYNCH", "SERIAL_FC", "SLEEP", "SPI", "SPISLAVE", "SPI_ASYNCH"],
1964+
"features": ["IPV4"]
19641965
}
19651966
}

hal/targets/cmsis/TARGET_NUVOTON/TARGET_NUC472/TARGET_NUMAKER_PFM_NUC472/TOOLCHAIN_ARM_STD/NUC472.sct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ LR_IROM1 0x00000000 {
2222

2323
; Too large to place into internal SRAM. So place into external SRAM instead.
2424
ER_XRAM1 0x60000000 {
25-
*sal-stack-lwip* (+ZI)
25+
*lwip_* (+ZI)
2626
}
2727

2828
; Extern SRAM for HEAP

hal/targets/cmsis/TARGET_NUVOTON/TARGET_NUC472/TARGET_NUMAKER_PFM_NUC472/TOOLCHAIN_GCC_ARM/NUC472.ld

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,8 @@ SECTIONS
235235
* Place large .bss* sections into external SRAM if internal SRAM is insufficient.
236236
* Such memory arrangement requires initializing .bss.extern section to zero in startup file. Check startup fiile in cmsis-core-* for support or not.
237237
*/
238-
/* E.g.: ym/sal-stack-lwip/source/sal-stack-lwip.a(.bss*) */
238+
*lwip_*.o(.bss*)
239+
*lwip_*.o(COMMON)
239240
__bss_extern_end__ = .;
240241
} > RAM_EXTERN
241242

0 commit comments

Comments
 (0)