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.

CCS Cloud - how to increase heap & stack sizes?

Project -> Properties -> MSP430 Linker 

does not seem to be editable when using the TI CCS Cloud platform.

How can you change the Heap and Stack Sizes using CCS Cloud?

Printf doesn't work without an increase in heap size -

so Printf is not working when debugging using the CCS Cloud.

;-( Tom

  • tommoxon said:

    Project -> Properties -> MSP430 Linker 

    does not seem to be editable when using the TI CCS Cloud platform.

    Unfortunately this is a current limitation of CCS Cloud. We plan to add this support in the future, but it is currently not there. Sorry!

  • tommoxon said:
    How can you change the Heap and Stack Sizes using CCS Cloud?

    While the CCS cloud doesn't let you change the linker option from the project properties, the CCS cloud does allow to edit the linker command file.

    The linker command file allows linker options to be specified. As a work-around you can add the options to set the stack and heap size to the linker command file. e.g. add the following before the MEMORY regions:

    --heap_size=512
    --stack_size=512
    

    Another quirk I have noticed with the CCS cloud is that while the linker options specify the creation of a linker map file, the map file doesn't appear in the list of files shown in the CCS cloud.