Skip to content

Commit

Permalink
REMOVEME: ld script fix in PR #19842
Browse files Browse the repository at this point in the history
  • Loading branch information
gschorcht committed Jul 22, 2023
1 parent d11255b commit 560fea1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpu/stm32/ldscripts/stm32.ld
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
* @}
*/

ccmram_length = DEFINED( ccmram_len ) ? ccmram_len : 0x0 ;
sram4_length = DEFINED( sram4_length ) ? sram4_length : 0x0 ;
ccmram_length = DEFINED( _ccmram_len ) ? _ccmram_len : 0x0 ;
sram4_length = DEFINED( _sram4_length ) ? _sram4_length : 0x0 ;

MEMORY
{
Expand All @@ -31,7 +31,7 @@ SECTIONS
{
.heap2 ALIGN(4) (NOLOAD) :
{
_sheap2 = . ;
_sheap2 = ORIGIN(sram4);
_eheap2 = ORIGIN(sram4) + LENGTH(sram4);
} > sram4
}
Expand Down

0 comments on commit 560fea1

Please sign in to comment.