#include <stdlib.h>
#include <unistd.h>
#include <string.h>
+#include "sleep.h"
#include "cmdparser.h"
#include "data.h"
#include "usb_cmd.h"
void WaitForResponse(uint32_t response_type)
{
while (received_command != response_type) {
-#ifdef WIN32
- UsbCommand c;
- if (ReceiveCommandPoll(&c))
- UsbCommandReceived(&c);
- Sleep(0);
-#else
- usleep(10000); // XXX ugh
-#endif
+ msleep(10); // XXX ugh
}
received_command = CMD_UNKNOWN;
}