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.

Piccolo CCS - 32k limited version - latest build

http://software-dl.ti.com/dsps/dsps_registered_sw/sdo_ccstudio/CCSv3/CCS_v3.3_ImageUpdate2k_3.3.83.14_Limited.zip

Please uninstall any previous build  before installing this one.

The changes since build 12 are:

Build 13: adds support for Windows Vista

Build 14: adds float for registers in CLA

 

  • How can I easily check the code size of my code in CCS ?

    So i can be sure to not hurt the 32k limit.

    Thanks

  • Stefan Fischer said:

    How can I easily check the code size of my code in CCS ?

    The Project Build Options allow you to create a map file from the Linker step.  This will generate an ASCII text file that provides a summary of the memory allocation.

  • When i lookup my .map file I see this:

      name                  origin      length    used    attr   fill
      ---------------------- --------    ---------   --------   ----   --------
    PAGE 0:    

      BEGINRAM     00000000 00000002 00000000 RWIX
      RAMM0            00000002 000003fe 0000001f RWIX
      RAMH0            0000a000 00002000 00000000 RWIX
      OTP                  003d7800 00008800 00000000 RWIX
      FLASH             003e8000 0000fff6 00001820 RWIX
      BEGINFLASH 003f7ff6 00000002 00000002 RWIX
      CSM_PWL      003f7ff8 00000008 00000000 RWIX
      BOOTROM      003ff000 00000fc0 00000000 RWIX
      RESET             003fffc0 00000002 00000000 RWIX
      VECTORS       003fffc2 0000003e 00000000 RWIX

    PAGE 1:

    RAMM1  .....etc....

     

    So do i have to add all the used memory areas to get the complete code size = restricted code size (even pheripherals in Page1 use memory)?

    Or i just have to lookup the used FLASH area(underlined)?   

  • The link step will fail and issue an error if you exceed the limit of the evaluation tools.

    Lori