Remove XONXOFF flow control from ID5100 and ID4100 -- Firmware E8 is not working correclty that flow control

https://github.com/Hamlib/Hamlib/issues/1202
pull/1215/head
Mike Black W9MDB 2023-01-04 10:45:06 -06:00
rodzic 0404b43bd8
commit cceffce4a5
2 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -98,7 +98,8 @@ const struct rig_caps id4100_caps =
.serial_data_bits = 8,
.serial_stop_bits = 1,
.serial_parity = RIG_PARITY_NONE,
.serial_handshake = RIG_HANDSHAKE_XONXOFF,
//.serial_handshake = RIG_HANDSHAKE_XONXOFF,
.serial_handshake = RIG_HANDSHAKE_NONE,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 1000,

Wyświetl plik

@ -154,7 +154,9 @@ const struct rig_caps id5100_caps =
.serial_data_bits = 8,
.serial_stop_bits = 1,
.serial_parity = RIG_PARITY_NONE,
.serial_handshake = RIG_HANDSHAKE_XONXOFF,
// XONXOFF is not working on Firmware E8
//.serial_handshake = RIG_HANDSHAKE_XONXOFF,
.serial_handshake = RIG_HANDSHAKE_NONE,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 1000,