My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stm32f103rb.ld 417B

123456789101112131415161718
  1. /*
  2. * Linker script for Generic STM32F103RB boards.
  3. */
  4. MEMORY
  5. {
  6. ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
  7. rom (rx) : ORIGIN = 0x08000000, LENGTH = 128K
  8. }
  9. /* Provide memory region aliases for common.inc */
  10. REGION_ALIAS("REGION_TEXT", rom);
  11. REGION_ALIAS("REGION_DATA", ram);
  12. REGION_ALIAS("REGION_BSS", ram);
  13. REGION_ALIAS("REGION_RODATA", rom);
  14. /* Let common.inc handle the real work. */
  15. INCLUDE common.inc