Suspend / Resume

BBBB
Has anyone got Suspend / Resume working on the Tiny210 / Mini210 boards
under WinCE?

I have got it suspending OK and I have either the RTC Alarm or an EINT
waking it up.  But as soon as it wakes it stalls presumably and I can't get
any further information as to what is happening.

It doesn't output anything from the Debug port to indicate it's left the
OEMPowerOff routine.  It does indicate it's got in there before it
suspends.

Any ideas would be appreciated.

jiameijiang
The 210 under wince is not output any information .If you want to dubug
serial output information ,you should modify some code .In option.h ,// ---
by customer
#define DEBUG_PORT DEBUG_UART_NONE   there does not define output debug
serial information ,if you want to define a GPIO pin as  output pin , you
can define such as
DEBUG_UART_NONE -> 
DEBUG_UART0 ->output serial output information to  COM1
DEBUG_UART ->output serial output information to  COM2
DEBUG_UART2 ->output serial output information to  COM3
DEBUG_UART3 ->output serial output information to  COM4

BBBB
Hi,

Unfortunately the issue is not that the debug port is not configured.
I already have the debug port enabled and can see that the board is
suspending.  (Going into OEMPowerOff).

The issue is the resume doesn't get to the bit where the port is re
initialised and therefore I cannot get information back out of the debug
port once it resumes.  So I don't know where it is stalling.
I haven't had any experience with the JTAG debugger but perhaps this is
needed for debugging this issue.