kopia lustrzana https://github.com/Hamlib/Hamlib
Reduced loop time in termios.c to 1ms vice 10ms
https://github.com/Hamlib/Hamlib/issues/695pull/1297/head
rodzic
f4a08e10bf
commit
01a7eee18d
|
@ -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");
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue