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.

mks_robin_mini.ld 376B

1234567891011121314
  1. MEMORY
  2. {
  3. ram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K - 40
  4. rom (rx) : ORIGIN = 0x08007000, LENGTH = 512K - 28K - 4K
  5. }
  6. /* Provide memory region aliases for common.inc */
  7. REGION_ALIAS("REGION_TEXT", rom);
  8. REGION_ALIAS("REGION_DATA", ram);
  9. REGION_ALIAS("REGION_BSS", ram);
  10. REGION_ALIAS("REGION_RODATA", rom);
  11. /* Let common.inc handle the real work. */
  12. INCLUDE common.inc