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/DSPBIOS: Idle tasks manage

Part Number: DSPBIOS

Tool/software: Code Composer Studio

Hi there,

I'm using DSP-BIOS for a C5515 application (CCS5).

I need to start an Idle process after the main() function returns (my idle process needs to start after the USB init).

Here is my main() function:

int main(void)
{
PllSet();

UsbOpen();
}

I was able to do thi by un-checking "Include in CPU load calibration" from the idle task properties.

How can I do that in a different way? Is there a function to call that let me start the idle task runtime from the program?

Thank you

Stefano