STM32F030F4Px_FLASH.ld 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. *****************************************************************************
  3. **
  4. ** File : LinkerScript.ld
  5. **
  6. ** Abstract : Linker script for STM32F030F4Px Device with
  7. ** 16KByte FLASH, 4KByte RAM
  8. **
  9. ** Set heap size, stack size and stack location according
  10. ** to application requirements.
  11. **
  12. ** Set memory bank area and size if external memory is used.
  13. **
  14. ** Target : STMicroelectronics STM32
  15. **
  16. **
  17. ** Distribution: The file is distributed as is, without any warranty
  18. ** of any kind.
  19. **
  20. ** (c)Copyright Ac6.
  21. ** You may use this file as-is or modify it according to the needs of your
  22. ** project. Distribution of this file (unmodified or modified) is not
  23. ** permitted. Ac6 permit registered System Workbench for MCU users the
  24. ** rights to distribute the assembled, compiled & linked contents of this
  25. ** file as part of an application binary file, provided that it is built
  26. ** using the System Workbench for MCU toolchain.
  27. **
  28. *****************************************************************************
  29. */
  30. /* Entry Point */
  31. ENTRY(Reset_Handler)
  32. /* Highest address of the user mode stack */
  33. _estack = 0x20001000; /* end of RAM */
  34. /* Generate a link error if heap and stack don't fit into RAM */
  35. _Min_Heap_Size = 0x200; /* required amount of heap */
  36. _Min_Stack_Size = 0x400; /* required amount of stack */
  37. /* Specify the memory areas */
  38. MEMORY
  39. {
  40. RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 4K
  41. FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 16K
  42. }
  43. /* Define output sections */
  44. SECTIONS
  45. {
  46. /* The startup code goes first into FLASH */
  47. .isr_vector :
  48. {
  49. . = ALIGN(4);
  50. KEEP(*(.isr_vector)) /* Startup code */
  51. . = ALIGN(4);
  52. } >FLASH
  53. /* The program code and other data goes into FLASH */
  54. .text :
  55. {
  56. . = ALIGN(4);
  57. *(.text) /* .text sections (code) */
  58. *(.text*) /* .text* sections (code) */
  59. *(.glue_7) /* glue arm to thumb code */
  60. *(.glue_7t) /* glue thumb to arm code */
  61. *(.eh_frame)
  62. KEEP (*(.init))
  63. KEEP (*(.fini))
  64. . = ALIGN(4);
  65. _etext = .; /* define a global symbols at end of code */
  66. } >FLASH
  67. /* Constant data goes into FLASH */
  68. .rodata :
  69. {
  70. . = ALIGN(4);
  71. *(.rodata) /* .rodata sections (constants, strings, etc.) */
  72. *(.rodata*) /* .rodata* sections (constants, strings, etc.) */
  73. . = ALIGN(4);
  74. } >FLASH
  75. .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
  76. .ARM : {
  77. __exidx_start = .;
  78. *(.ARM.exidx*)
  79. __exidx_end = .;
  80. } >FLASH
  81. .preinit_array :
  82. {
  83. PROVIDE_HIDDEN (__preinit_array_start = .);
  84. KEEP (*(.preinit_array*))
  85. PROVIDE_HIDDEN (__preinit_array_end = .);
  86. } >FLASH
  87. .init_array :
  88. {
  89. PROVIDE_HIDDEN (__init_array_start = .);
  90. KEEP (*(SORT(.init_array.*)))
  91. KEEP (*(.init_array*))
  92. PROVIDE_HIDDEN (__init_array_end = .);
  93. } >FLASH
  94. .fini_array :
  95. {
  96. PROVIDE_HIDDEN (__fini_array_start = .);
  97. KEEP (*(SORT(.fini_array.*)))
  98. KEEP (*(.fini_array*))
  99. PROVIDE_HIDDEN (__fini_array_end = .);
  100. } >FLASH
  101. /* used by the startup to initialize data */
  102. _sidata = LOADADDR(.data);
  103. /* Initialized data sections goes into RAM, load LMA copy after code */
  104. .data :
  105. {
  106. . = ALIGN(4);
  107. _sdata = .; /* create a global symbol at data start */
  108. *(.data) /* .data sections */
  109. *(.data*) /* .data* sections */
  110. . = ALIGN(4);
  111. _edata = .; /* define a global symbol at data end */
  112. } >RAM AT> FLASH
  113. /* Uninitialized data section */
  114. . = ALIGN(4);
  115. .bss :
  116. {
  117. /* This is used by the startup in order to initialize the .bss secion */
  118. _sbss = .; /* define a global symbol at bss start */
  119. __bss_start__ = _sbss;
  120. *(.bss)
  121. *(.bss*)
  122. *(COMMON)
  123. . = ALIGN(4);
  124. _ebss = .; /* define a global symbol at bss end */
  125. __bss_end__ = _ebss;
  126. } >RAM
  127. /* User_heap_stack section, used to check that there is enough RAM left */
  128. ._user_heap_stack :
  129. {
  130. . = ALIGN(8);
  131. PROVIDE ( end = . );
  132. PROVIDE ( _end = . );
  133. . = . + _Min_Heap_Size;
  134. . = . + _Min_Stack_Size;
  135. . = ALIGN(8);
  136. } >RAM
  137. /* Remove information from the standard libraries */
  138. /DISCARD/ :
  139. {
  140. libc.a ( * )
  141. libm.a ( * )
  142. libgcc.a ( * )
  143. }
  144. .ARM.attributes 0 : { *(.ARM.attributes) }
  145. }