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.
Tool/software: Code Composer Studio
Hello,
I'm developing C software for code composer studio V10.0 for the TMS570LS09 microprocessor and using the TI ARM Optimizing Compiler. What I'ld like to achieve is to have a nice graphical interface to quickly view code coverage report.
What I have achieve so far is to collect .csv file. I invoked the compiler with the option --gen_profile_info to obtain .prf file and then reused the compiler to create .csv files out of this .prf file. is there any tool that exist to read those .csv file and create an html report or to read those .csv file from code composer studio?
I've read that with the version 5.1 of code composer studio it was possible, but I didnt find a way to do it with a newer version...
Thanks for your help
Louis
user6369719 said:is there any tool that exist to read those .csv file and create an html report or to read those .csv file from code composer studio?
I'm not aware of anything built into CCS. We've seen some users use Excel as mentioned in this thread.
Thanks for the reply. Yes Excel can read those .csv file but the link between them and the source file is not so straight-forward.
It is specially still very tedious to see which percentage of coverage as a function or a file reached. And this should be the main feature of a coverage tool in my opinion.