target is not responding, retrying
I have a program with various tasks, in one of these I send a request and, after that, I wait for a response, so I have a cycle like this SendRequest(); do { WaitResponse(); DelayMillisecondS(200); }while (Timerisnotexpired()); the Problem is that th...