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.

RTOS/TMS320C6746: DSP/BIOS 5 Application to SYS/BIOS 6

Part Number: TMS320C6746

Tool/software: TI-RTOS

Hi,

Converted Tcf file to cfg file .This need to be done manually even though command line command given.
I almost done that .While converting dsp bios to sys bios 6.46 below are some queries
1.
For g_ltf_msec = ( (float)CLK_CPUCYCLESPERLTIME() / (float)GBL_getFrequency() );

CLK_CPUCYCLESPERLTIME() and GBL_getFrequency which functions to be replaced in sys bios 6.46 . do I need to do changes in cfg file as well?

2. For CLK_getltime(); which function to be replace .Is modification in cfg file required. Do I need to include any file for this
I replaced CLK_getltime(); with Clock_getTicks(); .So in following statement instead of CLK_getltime(); I used Clock_getTicks
e.g. ta_f = ( (float)( Clock_getTicks() - t_1 ) * MULT_1000 * g_htf_msec );

Thanks