Hi,
I want to ipmlement standby mode in my application (L application running time is 10sec, rest of the time is idle state). and i want to wakeup every2 minute.
to achieve this functionality an not using any power Constraint.
// commented the power constraint.
// Power_setConstraint(Power_SB_DISALLOW);
// Power_setConstraint(Power_IDLE_PD_DISALLOW);
so I think, the cpu enter in to sleep mode after my application complete ( idle state).
I want to wake up after 2 minute, for that am using one TI RTOS clock instances. which will expire in every two minute.
to wake up from standby mode, Is the clock expiration callback(clockCB – function to be called upon clock expiration) is enough? or Do I need to call any wakeup API in this clock callback?