kopia lustrzana https://github.com/Hamlib/Hamlib
Speed up Windows serial I/O
Was using a fixed timeout instead of returning already read https://github.com/Hamlib/Hamlib/issues/850pull/875/head
rodzic
9842cdb1f3
commit
30ef04b1a4
|
@ -1719,7 +1719,9 @@ int win32_serial_read(int fd, void *vb, int size)
|
||||||
|
|
||||||
size -= nBytes;
|
size -= nBytes;
|
||||||
total += nBytes;
|
total += nBytes;
|
||||||
|
return (total);
|
||||||
|
|
||||||
|
#if 0
|
||||||
if (size > 0)
|
if (size > 0)
|
||||||
{
|
{
|
||||||
now = GetTickCount();
|
now = GetTickCount();
|
||||||
|
@ -1745,6 +1747,7 @@ int win32_serial_read(int fd, void *vb, int size)
|
||||||
*/
|
*/
|
||||||
report("ERROR_IO_PENDING\n");
|
report("ERROR_IO_PENDING\n");
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
default:
|
default:
|
||||||
/*
|
/*
|
||||||
|
@ -1918,7 +1921,8 @@ int win32_serial_read(int fd, void *vb, int size)
|
||||||
|
|
||||||
size -= nBytes;
|
size -= nBytes;
|
||||||
total += nBytes;
|
total += nBytes;
|
||||||
|
return (total);
|
||||||
|
#if 0
|
||||||
if (size > 0)
|
if (size > 0)
|
||||||
{
|
{
|
||||||
now = GetTickCount();
|
now = GetTickCount();
|
||||||
|
@ -1945,6 +1949,7 @@ int win32_serial_read(int fd, void *vb, int size)
|
||||||
*/
|
*/
|
||||||
report("ERROR_IO_PENDING\n");
|
report("ERROR_IO_PENDING\n");
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
default:
|
default:
|
||||||
/*
|
/*
|
||||||
|
|
Ładowanie…
Reference in New Issue