This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Stack Location (Cortex-M)

Hi guys,

I'm wishing to move the location of the stack but how is this possible? In the startup.s I have

                EXPORT  __initial_sp
Stack_Size      EQU     0x00000200

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

However there's no option for the location and nothing specific for the stack appears to show up in the generate scatter file.

I'm a little lost and would appreciate any help.

Many thanks

0