Happy New Year to all!
I'm struggling to implement idle sleep with a TMS570 and the FreeRTOS HALCoGen project. I can get the proessor to sleep by implementing:
void vApplicationIdleHook( void )
{
systemPowerDown(SYS_DOZE_MODE);
}
However, once asleep it doesn't wake up again! The two areas of concern are:
1). Do I need to make a call to wake it up again, if so where (tick hook?)
2). What should the wakeup/powerdown clock sources be set to?
Any ideas?
Mat
-