• Locating the stack
    Hello, Could you refresh my memory as to the linker directive that can be used to located the system stack (and the syntax when used from the IDE)? Can I use public symbols from the startup file in...
  • external stack
    Hello, 1)I would like to check the stack of the reentrant function in order to know that i don't have any overflow. Do you know how i can do it? 2) Is it possible to use an external stack (stack in...
  • Check/locate Stack
    Hello, How is it possible to locate the stack (both internal and extended). Whow is it possible to check the size of allocated memory ? I would like also to put stack (only) in extended memory....
  • 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...
  • #define located on stack / in flash
    Hi, is it true that #define directives are located on the stack (or in the flash)? #define TEST "ein text" Or is it much better to use static unsigned char[] = "ein text"; variables...