From 75318d2f7d279270922dd1edaf6b586577b79a46 Mon Sep 17 00:00:00 2001 From: "lxbpxylps@126.com" Date: Tue, 10 Aug 2021 14:57:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E5=86=85=E5=AD=98=E5=88=86?= =?UTF-8?q?=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Core/startup_stm32h743xx.s | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Core/startup_stm32h743xx.s b/Core/startup_stm32h743xx.s index f8c14b5..6a017e6 100644 --- a/Core/startup_stm32h743xx.s +++ b/Core/startup_stm32h743xx.s @@ -30,7 +30,9 @@ ; Stack Size (in Bytes) <0x0-0xFFFFFFFF:8> ; -Stack_Size EQU 0x00000400 +;Stack_Size EQU 0x00000400 +;栈大小设置为 262144 Bytes +Stack_Size EQU 0x00040000 AREA STACK, NOINIT, READWRITE, ALIGN=3 Stack_Mem SPACE Stack_Size @@ -41,7 +43,9 @@ __initial_sp ; Heap Size (in Bytes) <0x0-0xFFFFFFFF:8> ; -Heap_Size EQU 0x00000200 +;Heap_Size EQU 0x00000200 +;堆大小设置为 262144 Bytes +Heap_Size EQU 0x00040000 AREA HEAP, NOINIT, READWRITE, ALIGN=3 __heap_base