WaitForResponseTimeoutW: fix, no communication_delay when timeout=-1

This commit is contained in:
Philippe Teuwen 2019-04-21 23:26:51 +02:00
parent a2e55be468
commit 75ee60f267

View file

@ -596,7 +596,9 @@ bool WaitForResponseTimeoutW(uint32_t cmd, PacketResponseNG *response, size_t ms
response = &resp;
// Add delay depending on the communication channel & speed
ms_timeout += communication_delay();
if (ms_timeout != (size_t)-1)
ms_timeout += communication_delay();
uint64_t start_time = msclock();
// Wait until the command is received