Browse Source

STM32 RODATA LENGTH (#16580)

pull/1/head
Pascal de Bruijn 5 years ago
committed by Scott Lahteine
parent
commit
f10d3564e1
  1. 2
      buildroot/share/PlatformIO/ldscripts/STM32F103RC_SKR_MINI_256K.ld
  2. 2
      buildroot/share/PlatformIO/ldscripts/STM32F103RC_SKR_MINI_512K.ld
  3. 2
      buildroot/share/PlatformIO/ldscripts/STM32F103RE_SKR_E3_DIP.ld
  4. 2
      buildroot/share/PlatformIO/ldscripts/fysetc_aio_ii.ld
  5. 2
      buildroot/share/PlatformIO/ldscripts/mks_robin_mini.ld

2
buildroot/share/PlatformIO/ldscripts/STM32F103RC_SKR_MINI_256K.ld

@ -1,7 +1,7 @@
MEMORY
{
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 48K - 40
rom (rx) : ORIGIN = 0x08007000, LENGTH = 256K - 28K
rom (rx) : ORIGIN = 0x08007000, LENGTH = 256K - 28K - 4K
}
/* Provide memory region aliases for common.inc */

2
buildroot/share/PlatformIO/ldscripts/STM32F103RC_SKR_MINI_512K.ld

@ -1,7 +1,7 @@
MEMORY
{
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 48K - 40
rom (rx) : ORIGIN = 0x08007000, LENGTH = 512K - 28K
rom (rx) : ORIGIN = 0x08007000, LENGTH = 512K - 28K - 4K
}
/* Provide memory region aliases for common.inc */

2
buildroot/share/PlatformIO/ldscripts/STM32F103RE_SKR_E3_DIP.ld

@ -1,7 +1,7 @@
MEMORY
{
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 48K - 40
rom (rx) : ORIGIN = 0x08007000, LENGTH = 512K - 28K
rom (rx) : ORIGIN = 0x08007000, LENGTH = 512K - 28K - 4K
}
/* Provide memory region aliases for common.inc */

2
buildroot/share/PlatformIO/ldscripts/fysetc_aio_ii.ld

@ -5,7 +5,7 @@
MEMORY
{
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 48K
rom (rx) : ORIGIN = 0x08010000, LENGTH = 256K-40K
rom (rx) : ORIGIN = 0x08010000, LENGTH = 256K - 40K - 4K
}
/* Provide memory region aliases for common.inc */

2
buildroot/share/PlatformIO/ldscripts/mks_robin_mini.ld

@ -1,7 +1,7 @@
MEMORY
{
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K - 40
rom (rx) : ORIGIN = 0x08007000, LENGTH = 512K - 28K
rom (rx) : ORIGIN = 0x08007000, LENGTH = 512K - 28K - 4K
}
/* Provide memory region aliases for common.inc */

Loading…
Cancel
Save