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