2 *****************************************************************************
4 ** File : stm32_flash.ld
6 ** Abstract : Linker script for STM32F30x Device with
7 ** 128KByte FLASH and 40KByte RAM
9 *****************************************************************************
12 /* Specify the memory areas. */
15 FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 126K /* last 2kb used for config storage */
16 RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 40K
17 MEMORY_B1 (rx) : ORIGIN = 0x60000000, LENGTH = 0K
20 INCLUDE "stm32_flash.ld"