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.

question about the .out file being generated by the Code composer.

Other Parts Discussed in Thread: CCSTUDIO, MSP430G2233

I am new to CCStudio question  about the .out file being generated by the Code composer.

i installed CCStudio 5 and i compiled simple ADC examples for MSP430G2233 with flash (2KB). but my .out file size is generated 16668Bytes, how it possible i am planing to use free CCStudio up to 16k and i chosen MSP430G2233 controller.

I want to use free version CCStudio,

Please help me regarding this.

Regards

Hexa

  • The .out file includes debugging (and a bit of program loading) information.

    The 16kb CCS limitation is on the flash memory segment, not the output file. One way to see this is in the linkers map file. In the same folder as the <project name>.out, look for <project name>.map

    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      FLASH                 0000e000   00001fe0  000000c0  00001f20  RWIX
    

    There will be a bunch of other sections, but the FLASH section shows how much is used ( 0xc0 in my example).

    Another way to find all the gory details is using the ofd430.exe command line tool, but that's probably way too much info for getting started.

**Attention** This is a public forum