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/CC3200: Run time analysis with CCSv6

Part Number: CC3200

Tool/software: Code Composer Studio

Hi,

Please let me know how to do run time analysis on CC3200 using CCSv6.

  • What type of runtime analysis are you looking to do? If your application is using TI-RTOS then you can go to the Tools Menu and select RTOS Object View (in CCSv7.1 this is called Runtime Object View). This tool will show you the status of runtime objects in the kernel.

    Regards,
    John
  • No. I'm Looking for Non TI-RTOS application analysis tool. similar to that of CRUN in IAR Embedded Workbench
  • CCS does not include an equivalent to C-RUN. You can enable some static code analysis in CCS but we do not have instrumentation based runtime analysis. There are products from ParaSoft, LDRA, KlocWork and others that provide this type of functionality that are available.

    Regards,
    John
  • how to perform static analysis in CCS. we need to test on CC3200 SoC.
  • You can enable limited static analysis in CCS by doing the following.

    Configure Analysis settings

    • Window -> Preferences on the menu
    • Click the show advanced settings link at the button left
    • Go to C/C++ -> Code Analysis in the tree
    • Configure what you want to check

    Enable for your project

    • Right click on the project and select properties
    • Click show advanced settings at the bottom left
    • To to C/C++ General -> Code Analysis -> Launching in the tree
    • Choose if you want it to run with the build or as you type

    It will now be enabled.

    Note that this is a subset of the functionality that you would get with a commercial analysis tool like ParaSoft/LDRA/Klocwork...  Those ones have both good static analysis and runtime analysis.

    Regards,

    John