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.

Trouble with stack and heap sizing in CCS

Other Parts Discussed in Thread: MSP430F2274, CCSTUDIO

Hello,

I have been having a l lot of trouble getting printf functions to work in Code Composer Studio v4.0.2. I am running the sensor monitor example firmware for the eZ430-RF2500 with an msp430F2274, and would like to see some values printed to the console. I have seen the suggestion everywhere (such as in the "Tips for using printf" page) to increase the heap and stack sizes both to at least 0x400. But the program only builds successfully near the default values (80 for each), which I'm sure isn't large enough for CIO buffers and why nothing prints to the console when that happens. When I set the stack and heap sizes to larger values I get linker errors. Using this test code for the same target, gets the same results:

#include <stdio.h>
void main (void) {
    printf("hello");
}

The errors generally look like this:
run placement fails for object ".bss", size 0x22c (page 0).  Available ranges: RAM          size: 0x400        unused: 0x0          max hole: 0x0      
run placement fails for object ".cio", size 0x120 (page 0).  Available ranges: RAM          size: 0x400        unused: 0x0          max hole: 0x0           
run placement fails for object ".sysmem", size 0x400 (page 0).  Available ranges: RAM          size: 0x400        unused: 0x0          max hole: 0x0  

Any advice would be much appreciated

-HW


  • Hi HW,

    Hart Wanetick said:
    run placement fails for object ".bss", size 0x22c (page 0).  Available ranges: RAM          size: 0x400        unused: 0x0          max hole: 0x0      
    run placement fails for object ".cio", size 0x120 (page 0).  Available ranges: RAM          size: 0x400        unused: 0x0          max hole: 0x0           
    run placement fails for object ".sysmem", size 0x400 (page 0).  Available ranges: RAM          size: 0x400        unused: 0x0          max hole: 0x0  

    You are trying to squeeze the .bss, .cio, and .sysmem sections all in the range defined as RAM, which has a size of 0x400. The size of all three sections combined is greater that 0x400 (just the .sysmem section would take up all of RAM by itself) so the linker is throwing an error. You will need to place some of the sections in other available free memory ranges - if they exist. I don't think there is a whole lot on MSP430, hence why cio is not recommended for it.

    Thanks

    ki

  • Thanks Ki for the response.

    You're right that I was trying to use more memory than I had available. But even when I reduced the stack and heap limits to well below that, 0x115 for both, I got the following errors:

    run placement fails for object ".stack", size 0x115 (page 0).  Available ranges: RAM          size: 0x400        unused: 0xb4         max hole: 0xb4  
    run placement fails for object ".sysmem", size 0x115 (page 0).  Available ranges: RAM          size: 0x400        unused: 0xb4         max hole: 0xb4

    I'm not sure why I'm still getting errors when there seems to be unused RAM available.

  • The unused RAM size is just 0xb4. the stack and heap size for each of them is greater (0x115 each). 

  • Hi Hart,

    unfortunately printf is not something every msp can handle.  Have you also checked/tried the following

    - do you have full printf support selected in your project settings?

    - have you been also first been trying the simple hello world example (even available via the new project wizard) on the F2274 without having radio code as well?

    - have you considered newer CCS/compiler versions?

    - have you been to this useful wiki?

    http://processors.wiki.ti.com/index.php/Printf_support_for_MSP430_CCSTUDIO_compiler



    Best Regards,
    Lisa

  • Hi Lisa,

    Yes I've been to the Printf support site and I tried both full and minimal printf support settings with the same results. I am going to try using CCSv5 for the firmware instead, since I was able to get the hello test code working using that version. Thanks for the suggestions,

    -HW

  • Hi Hart,

    ok please keep us informed how that goes.  Unfortunately, however it may be that the msp can not handle it in your case if you still find issues.

    Best Regards,
    Lisa