Hi,
I found out debugging in SED is really a pain...though I still new to the SED environment..
I got problem like when will be the right time to press the key??
Sample code like:
while(1)
{
if(key_w)
// do forward move...
else
// do nothing...
wait(1);
}
I do single stepping in my code.. and put a breakpoint in the code line if(key_w)... I just got it once to stop at the breakpoint...
For the next iteration, I key in W but it would not stop in the breakpoint.
Any advise? Is there any tutorial or article relating to debugging in SED?
Thanks