diff options
author | bnewbold <bnewbold@robocracy.org> | 2015-03-01 15:02:52 -0800 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2015-03-03 00:19:07 -0800 |
commit | 92728fbd1f92123c92a42fcc36f0fc127011e112 (patch) | |
tree | caa24599aa0a27011e1a3967a523088e64fd5ddf /support/ld/stm32 | |
parent | 2c2e9ff751d46eac3d9564dfe91ec7734e75e07a (diff) | |
download | librambutan-stm32f4discovery.tar.gz librambutan-stm32f4discovery.zip |
WIP: board support for STM32F4DISCOVERY (huge F407 chip)stm32f4discovery
Diffstat (limited to 'support/ld/stm32')
-rw-r--r-- | support/ld/stm32/mem/sram_192k_flash_1024k/mem-jtag.inc | 5 | ||||
-rw-r--r-- | support/ld/stm32/mem/sram_192k_flash_1024k/mem-ram.inc | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/support/ld/stm32/mem/sram_192k_flash_1024k/mem-jtag.inc b/support/ld/stm32/mem/sram_192k_flash_1024k/mem-jtag.inc new file mode 100644 index 0000000..074e315 --- /dev/null +++ b/support/ld/stm32/mem/sram_192k_flash_1024k/mem-jtag.inc @@ -0,0 +1,5 @@ +MEMORY +{ + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 192K + rom (rx) : ORIGIN = 0x08000000, LENGTH = 1024K +} diff --git a/support/ld/stm32/mem/sram_192k_flash_1024k/mem-ram.inc b/support/ld/stm32/mem/sram_192k_flash_1024k/mem-ram.inc new file mode 100644 index 0000000..d21f17c --- /dev/null +++ b/support/ld/stm32/mem/sram_192k_flash_1024k/mem-ram.inc @@ -0,0 +1,5 @@ +MEMORY +{ + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 112K + rom (rx) : ORIGIN = 0x08000000, LENGTH = 0K +} |