Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@
<OCR_RVCT4>
<Type>1</Type>
<StartAddress>0x8004000</StartAddress>
<Size>0x40000</Size>
<Size>0x3C000</Size>
</OCR_RVCT4>
<OCR_RVCT5>
<Type>1</Type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
define symbol __ICFEDIT_intvec_start__ = 0x08000000;
/*-Memory Regions-*/
define symbol __ICFEDIT_region_ROM_start__ = 0x08000000 ;
define symbol __ICFEDIT_region_ROM_end__ = 0x080FFFFF;
define symbol __ICFEDIT_region_ROM_end__ = 0x0803FFFF;
define symbol __ICFEDIT_region_RAM_start__ = 0x20000000;
define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF;
define symbol __ICFEDIT_region_RAM_end__ = 0x2000FFFF;
/*-Sizes-*/
define symbol __ICFEDIT_size_cstack__ = 0x400;
define symbol __ICFEDIT_size_heap__ = 0x200;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
**
** File : LinkerScript.ld
**
** Abstract : Linker script for STM32F107RCIx Device with
** 1024KByte FLASH, 96KByte RAM
** Abstract : Linker script for STM32F107RCTx Device with
** 256KByte FLASH, 64KByte RAM
**
** Set heap size, stack size and stack location according
** to application requirements.
Expand Down Expand Up @@ -35,8 +35,8 @@ _Min_Stack_Size = 0x400; /* required amount of stack */
/* Specify the memory areas */
MEMORY
{
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 96K
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 256K
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 64K
}

/* Define output sections */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@
<OCR_RVCT4>
<Type>1</Type>
<StartAddress>0x8004000</StartAddress>
<Size>0x100000</Size>
<Size>0xFC000</Size>
</OCR_RVCT4>
<OCR_RVCT5>
<Type>1</Type>
Expand Down