bootloader: fix linker script to indicate correct flash size for STM32F103xC

This commit is contained in:
King Kévin 2018-02-13 13:47:03 +01:00
parent afd0f5545d
commit 59094a05d3
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ MEMORY
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
}
PROVIDE(__application_beginning = ORIGIN(rom) + LENGTH(rom));
PROVIDE(__application_end = __application_beginning + 56K);
PROVIDE(__application_end = __application_beginning + 248K);
/* include rest of the definitions for the STM32F1 family */
INCLUDE libopencm3_stm32f1.ld