-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Labels
Area: cpuArea: CPU/MCU portsArea: CPU/MCU portsType: bugThe issue reports a bug / The PR fixes a bug (including spelling errors)The issue reports a bug / The PR fixes a bug (including spelling errors)
Description
Description
cpu/stm32/ldscripts/stm32.ld:
ccmram_length = DEFINED( _ccmram_len ) ? _ccmram_len : 0x0 ;
ccmram_length defined with the value of "_ccmram_len". But there is no "_ccmram_len" at all, so "ccmram_length" always has the same default value "0x0"
In cpu/stm32/Makefile.icnlude we define "_ccmram_length":
LINKFLAGS += $(LINKFLAGPREFIX)--defsym=_ccmram_lenght=$(CCMRAM_LEN)
I think that it should be:
LINKFLAGS += $(LINKFLAGPREFIX)--defsym=_ccmram_len=$(CCMRAM_LEN)
Metadata
Metadata
Assignees
Labels
Area: cpuArea: CPU/MCU portsArea: CPU/MCU portsType: bugThe issue reports a bug / The PR fixes a bug (including spelling errors)The issue reports a bug / The PR fixes a bug (including spelling errors)