kopia lustrzana https://github.com/Hamlib/Hamlib
Re-enable O_NDELAY -- slowed things down by about 2X
https://github.com/Hamlib/Hamlib/issues/1163pull/1167/head
rodzic
a116cbe502
commit
dc7e9bd7e9
|
@ -222,8 +222,7 @@ int HAMLIB_API serial_open(hamlib_port_t *rp)
|
|||
|
||||
do // some serial ports fail to open 1st time for some unknown reason
|
||||
{
|
||||
//fd = OPEN(rp->pathname, O_RDWR | O_NOCTTY | O_NDELAY);
|
||||
fd = OPEN(rp->pathname, O_RDWR | O_NOCTTY);
|
||||
fd = OPEN(rp->pathname, O_RDWR | O_NOCTTY | O_NDELAY);
|
||||
|
||||
if (fd == -1) // some serial ports fail to open 1st time for some unknown reason
|
||||
{
|
||||
|
|
Ładowanie…
Reference in New Issue