ld: don't provide flash size

This commit is contained in:
King Kévin 2020-01-10 11:02:22 +01:00
parent 2520df3e72
commit c01e663fcd
1 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
* the first 4 bytes of the RAM is reserved for the DFU magic word (DFU! to start DFU bootloader)
*/
/* Define memory regions. */
/* define memory regions. */
MEMORY
{
rom (rx) : ORIGIN = 0x08000000, LENGTH = 8K
@ -19,9 +19,9 @@ PROVIDE(__flash_end = __application_beginning + 128K - 8K);
PROVIDE(__application_end = 0);
PROVIDE(__flash_end = 0);
*/
PROVIDE(__application_end = __application_beginning + 128K - 8K);
PROVIDE(__flash_end = __application_beginning + 128K - 8K);
PROVIDE(__application_end = 0);
PROVIDE(__flash_end = 0);
/* RAM location reserved so application can talk to bootloader and tell to start DFU */
PROVIDE(__dfu_magic = ORIGIN(ram) - 4);
/* include rest of the definitions for the STM32F1 family */