Part Number: TMS570LS3137
Tool/software: Code Composer Studio
In my application there is array size of 2048 byte. Firmware is work.
After change size on 4096, firmware aborted (goes to the vector _dabort).
Why it happand?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: TMS570LS3137
Tool/software: Code Composer Studio
In my application there is array size of 2048 byte. Firmware is work.
After change size on 4096, firmware aborted (goes to the vector _dabort).
Why it happand?
How to change the stack size:
1. Change the stack size in CCS linker setting (you have done this already): --stack_size=0x1200
2. Change the stack size assigned to user mode in sys_core.asm: userSp .word 0x08000000+0x00001200
3. Change the memory size used for stack in linker cmd file: STACKS (RW) : origin=0x08000000 length=0x00001700