stm32f207xC_flash.ld 547 B

1234567891011121314151617181920
  1. /******************************************************************************
  2. *
  3. * stm32f207xC.ld - linker script for nutos on cortex-m3 STM32F20CxB
  4. *
  5. *****************************************************************************/
  6. ENTRY(NutInit)
  7. SEARCH_DIR(.)
  8. "bootloader_offset" = 0x00;
  9. MEMORY
  10. {
  11. FLASH0 (rx) : ORIGIN = 0x08000000, LENGTH = 256K
  12. SRAM0 (rwx) : ORIGIN = 0x20000000, LENGTH = 112K
  13. DMA (rwx) : ORIGIN = 0x2001c000, LENGTH = 16K
  14. BKPSRAM(rwx) : ORIGIN = 0x40024000, LENGTH = 4k
  15. }
  16. INCLUDE stm32f10x_flash.ld