cancel
Showing results for 
Search instead for 
Did you mean: 

STACK size in Keil uVision uC STM32L052c

gerardo
Associate II
Posted on December 19, 2014 at 15:10

Hi everyone,

Does anyone know how to define the stack size in a project in Keil uVision for the ARM STM32L052 uC??

1 REPLY 1
Posted on December 19, 2014 at 17:09

Does anyone know how to define the stack size in a project in Keil uVision for the ARM STM32L052 uC??

Probably in startup_stm32l0xx.s?

Stack_Size EQU 0x00000400
AREA STACK, NOINIT, READWRITE, ALIGN=3
Stack_Mem SPACE Stack_Size
__initial_sp

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..