stm32f722.ld 993 B

123456789101112131415161718192021222324252627
  1. /*
  2. GNU linker script for STM32F722, STM32F723, STM32F732, STM32F733
  3. */
  4. /* Specify the memory areas */
  5. MEMORY
  6. {
  7. FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 512K
  8. FLASH_ISR (rx) : ORIGIN = 0x08000000, LENGTH = 32K /* sectors 0,1 */
  9. FLASH_APP (rx) : ORIGIN = 0x08008000, LENGTH = 480K /* sectors 2-7 */
  10. RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 256K /* DTCM+SRAM1+SRAM2 */
  11. }
  12. /* produce a link error if there is not this amount of RAM for these sections */
  13. _minimum_stack_size = 2K;
  14. _minimum_heap_size = 16K;
  15. /* Define tho top end of the stack. The stack is full descending so begins just
  16. above last byte of RAM. Note that EABI requires the stack to be 8-byte
  17. aligned for a call. */
  18. _estack = ORIGIN(RAM) + LENGTH(RAM);
  19. /* RAM extents for the garbage collector */
  20. _ram_start = ORIGIN(RAM);
  21. _ram_end = ORIGIN(RAM) + LENGTH(RAM);
  22. _heap_start = _ebss; /* heap starts just after statically allocated memory */
  23. _heap_end = 0x20038000; /* tunable */