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: ROV Classic - not showing most fields

Tool/software: Code Composer Studio

Hello,

I've just started using Tools->ROV Classic, for analysis of my project.  However, I can't figure out how to get all the fields populated.  As shown, for Hwi as an example (but other elements have the same type of issues), it shows the address and name properly, but almost everything else is either missing or wrong.

Here is where I created these Hwi's, in my .cfg config file.

var hwi_4_params = new Hwi.Params();
hwi_4_params.instance.name = "hwi_mcasp";
hwi_4_params.arg = 0
Program.global.hwi_mcasp = Hwi.create( 4, "&hwi_fxn_mcasp", hwi_4_params );

var hwi_5_params = new Hwi.Params();
hwi_5_params.instance.name = "hwi_edma3_int";
hwi_5_params.arg = 0
Program.global.hwi_edma3_int1 = Hwi.create( 5, "&hwi_fxn_edma3_int1", hwi_5_params );

var hwi_6_params = new Hwi.Params();
hwi_6_params.instance.name = "hwi_timer0_12";
hwi_6_params.arg = 0
Program.global.hwi_timer0_12 = Hwi.create( 6, "&hwi_fxn_timer0_12", hwi_6_params );

var hwi_7_params = new Hwi.Params();
hwi_7_params.instance.name = "hwi_timer0_34";
hwi_7_params.arg = 0
Program.global.hwi_timer0_34 = Hwi.create( 7, "&hwi_fxn_timer0_34", hwi_7_params );

var hwi_8_params = new Hwi.Params();
hwi_8_params.instance.name = "hwi_usart";
hwi_8_params.arg = 0
Program.global.USART_Handler = Hwi.create( 8, "&hwi_fxn_usart", hwi_8_params );

var hwi_9_params = new Hwi.Params();
hwi_9_params.instance.name = "hwi_timer2_12_34";
hwi_9_params.arg = 0
Program.global.hwi_timer2_12_34 = Hwi.create( 9, "&hwi_fxn_timer2_12_34", hwi_9_params );

Is there something I need to do extra/differently, to get the information in ROV?

Robert