Update the FreeRTOS+ Win32 MSVC demos to account for the changes to the Win32 port layer (more accurate timing).

This commit is contained in:
Richard Barry
2013-10-29 11:43:41 +00:00
parent 15d10ce094
commit 6642926d43
2 changed files with 9 additions and 8 deletions

View File

@ -156,7 +156,7 @@ uint32_t ulCount = 0UL;
/* Short delay to prevent the messages streaming up the
console too quickly. */
vTaskDelay( 5 );
vTaskDelay( 50 );
ulCount++;
} while( ( lReturned != SOCKET_ERROR ) && ( ulCount < 10UL ) );
@ -166,7 +166,7 @@ uint32_t ulCount = 0UL;
closesocket( xClientSocket );
/* Delay for a short time before starting over. */
vTaskDelay( 50 );
vTaskDelay( 250 );
}
}
}