Reduced loop time in termios.c to 1ms vice 10ms

https://github.com/Hamlib/Hamlib/issues/695
pull/1297/head
Mike Black W9MDB 2023-05-16 07:38:21 -05:00
rodzic f4a08e10bf
commit 01a7eee18d
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -3798,9 +3798,9 @@ int win32_serial_select(int n, fd_set *readfds, fd_set *writefds,
goto end;
}
hl_usleep(10000);
hl_usleep(1000);
/* FIXME: not very accurate wrt process time */
timeout_usec -= 10000;
timeout_usec -= 1000;
report("sleep...\n");