From 453d989ecf529da0ce9648aca3928b5d544ebf04 Mon Sep 17 00:00:00 2001 From: J08nY Date: Tue, 16 May 2023 12:36:37 +0200 Subject: Update ChipWhisperer HAl from upstream. --- pyecsca/codegen/hal/stm32f3/LinkerScript.ld | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pyecsca/codegen/hal/stm32f3/LinkerScript.ld') diff --git a/pyecsca/codegen/hal/stm32f3/LinkerScript.ld b/pyecsca/codegen/hal/stm32f3/LinkerScript.ld index 0fe0488..7d3b620 100644 --- a/pyecsca/codegen/hal/stm32f3/LinkerScript.ld +++ b/pyecsca/codegen/hal/stm32f3/LinkerScript.ld @@ -16,7 +16,7 @@ ** ** Target : STMicroelectronics STM32 ** -** Distribution: The file is distributed “as is,” without any warranty +** Distribution: The file is distributed �as is,� without any warranty ** of any kind. ** ***************************************************************************** @@ -53,7 +53,7 @@ ENTRY(Reset_Handler) /* Highest address of the user mode stack */ -_estack = 0x20003000; /* end of RAM */ +_estack = 0x2000A000; /* end of RAM */ _Min_Heap_Size = 0; /* required amount of heap */ _Min_Stack_Size = 0x400; /* required amount of stack */ @@ -61,8 +61,8 @@ _Min_Stack_Size = 0x400; /* required amount of stack */ /* Memories definition */ MEMORY { - RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 12K - ROM (rx) : ORIGIN = 0x8000000, LENGTH = 64K + RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 40K + ROM (rx) : ORIGIN = 0x8000000, LENGTH = 256K } /* Sections */ -- cgit v1.3.1