Enable async by default -- this prevents WSJT-X from crashing when transceive mode is on for the IC9700

https://github.com/Hamlib/Hamlib/issues/1264
This commit is contained in:
Mike Black W9MDB 2023-03-27 10:04:59 -05:00
parent d34983f495
commit 5aab96beff
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -31,6 +31,7 @@ Version 4.6
* Fix FTDX3000 rig split * Fix FTDX3000 rig split
Version 4.5.5 Version 4.5.5
* Enable async mode by default to prevent WSJT-X crash on IC9700 with transceive on
* Fix IC7610 get_powerstat to disable it -- cannot read power status * Fix IC7610 get_powerstat to disable it -- cannot read power status
* Fix K3 K22 command error for remote operations * Fix K3 K22 command error for remote operations
* Fix Gemini DX1200 gemini_set_level * Fix Gemini DX1200 gemini_set_level

View File

@ -560,7 +560,7 @@ RIG *HAMLIB_API rig_init(rig_model_t rig_model)
#endif #endif
rs->priv = NULL; rs->priv = NULL;
rs->async_data_enabled = 0; rs->async_data_enabled = 1;
rs->rigport.fd = -1; rs->rigport.fd = -1;
rs->pttport.fd = -1; rs->pttport.fd = -1;
rs->comm_state = 0; rs->comm_state = 0;