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

Linker file

where the linker script file is generated in keil.where i find stackstartaddress and stackendaddress in linker script file.Can any one help me..

Parents
  • Linker scatter file is automatically generated by uVision (unless custom Scatter file is selected in the Target Options).

    Stack is defined in the Startup file with the symbol "Stack_Mem" which is also the start of Stack (low address). End of Stack (high address) is provided in symbol "Stack_Top" (ARM7/9) or "__initial_sp" for Cortex-M.

Reply
  • Linker scatter file is automatically generated by uVision (unless custom Scatter file is selected in the Target Options).

    Stack is defined in the Startup file with the symbol "Stack_Mem" which is also the start of Stack (low address). End of Stack (high address) is provided in symbol "Stack_Top" (ARM7/9) or "__initial_sp" for Cortex-M.

Children