Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 16 of file portio.c.
{ int TimeOut; DbgPrint("WaitToSend "); // Check if it's OK to send for (TimeOut = MPU401_TIMEOUT; ! MPU401_READY_TO_SEND(BasePort) && TimeOut > 0; TimeOut --); // If a time-out occurs, we report failure if (! TimeOut) { DbgPrint("FAILED\n"); return FALSE; } DbgPrint("SUCCEEDED\n"); return TRUE; }