hi
I'm trying to use the automatic power management in 5510. i followed the instructions of an old lab training instructions about 5510 from TI, where they mentioned the following steps:
1- add a power down function:
void powerDown(void)
{
PWR_powerDown(PWR_WAKEUP_MI);
}
2- turn on power configuration manager, and only check the CPU check box
3- create IDLE thread that calls the create function above.
when i did those steps all what comes out is a sound like a fast Woodpecker. my original project just takes audio in and gets it out using McBSP-DMA, by HWI and SWI.
when i uncheck the CPU in the power configuration, it gives normal results (sound), even if all the other check boxes are checked...
any suggestions?