1
0
mirror of https://github.com/preble/libpinproc synced 2026-02-24 18:25:23 +01:00

Resolved a number of build issues with WIN32 builds

This commit is contained in:
gstellenberg
2009-06-12 09:47:43 -05:00
parent 419269a60d
commit 789ac049db
4 changed files with 17 additions and 4 deletions

View File

@@ -525,7 +525,7 @@ PRResult PRDevice::SwitchGetStates( PREventType * switchStates, uint16_t numSwit
// Wait for data to return. Give it 10 loops before giving up.
while (requestedDataQueue.size() < numWords && i++ < 10)
{
sleep (.01); // 10 milliseconds should be plenty of time.
PRSleep (10); // 10 milliseconds should be plenty of time.
SortReturningData();
}
@@ -677,7 +677,7 @@ PRResult PRDevice::VerifyChipID()
max_count = 0;
//std::cout << "Waiting for read data ";
while (num_collected_bytes < (bufferWords*4) && max_count < 10) {
sleep(.01);
PRSleep(10);
//std::cout << ". ";
rc = CollectReadData();
max_count++;
@@ -809,7 +809,7 @@ PRResult PRDevice::ReadDataRaw(uint32_t moduleSelect, uint32_t startingAddr, int
// Expect numReadWords + 1 word with the address.
while (requestedDataQueue.size() < (numReadWords + 1) && i++ < 10)
{
sleep (.01); // 10 milliseconds should be plenty of time.
PRSleep (10); // 10 milliseconds should be plenty of time.
SortReturningData();
}