Hi,
As you know that exiting from deep power-down mode follows up reset process.
Regarding your issue, if you do not use an interrupt, while you declare a delay() function, then toggle a LED, is it okay?
for(;;)
{
delay();
//toggle LED
}
void delay(void)
{
uint32_t index;
for(index=0; index<100000; index++)
{
__asm("nop);
}
}
I suppose that there is issue for the CTimer interrupt.
If it is convenient, pls post your code so that we can duplicate the issue.
Hope it can help you
BR
XiangJun Rong