Re: DataReady not returning enough (General questions)
This is pseudo code and I forgot the sleep.
do
{
lDataReady = ISSH.DataReady()
// first call returns 0
// second call returns 17
if(0 == lDataReady || lDataReady < sCommand.length())
{
lDataReady = 0
Sleep(1000)
}
}
while(lDataReady == 0)