Skip to content

Commit

Permalink
Enable async by default -- this prevents WSJT-X from crashing when tr…
Browse files Browse the repository at this point in the history
…ansceive mode is on for the IC9700

#1264
  • Loading branch information
mdblack98 committed Mar 27, 2023
1 parent d34983f commit 5aab96b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Version 4.6
* Fix FTDX3000 rig split

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 K3 K22 command error for remote operations
* Fix Gemini DX1200 gemini_set_level
Expand Down
2 changes: 1 addition & 1 deletion src/rig.c
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ RIG *HAMLIB_API rig_init(rig_model_t rig_model)
#endif

rs->priv = NULL;
rs->async_data_enabled = 0;
rs->async_data_enabled = 1;
rs->rigport.fd = -1;
rs->pttport.fd = -1;
rs->comm_state = 0;
Expand Down

0 comments on commit 5aab96b

Please sign in to comment.