Skip to content

Commit

Permalink
Merge pull request #655 from drowe67/ms-full-duplex-bug
Browse files Browse the repository at this point in the history
Fix issue preventing TX audio from resuming after going from TX->RX in full duplex mode.
  • Loading branch information
tmiw authored Jan 15, 2024
2 parents 34053d4 + eeb6f03 commit 7e8af5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ endif(APPLE)

# Adds a tag to the end of the version string. Leave empty
# for official release builds.
set(FREEDV_VERSION_TAG "devel")
set(FREEDV_VERSION_TAG "")

# Prevent in-source builds to protect automake/autoconf config.
# If an in-source build is attempted, you will still need to clean up a few
Expand Down
3 changes: 2 additions & 1 deletion USER_MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes

# Release Notes

## V1.9.7 TBD 2024
## V1.9.7 January 2024

1. Bugfixes:
* Use double precision instead of float for loading frequency list. (PR #627)
Expand All @@ -909,6 +909,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
* Fix issue preventing FreeDV startup on macOS <= 10.13. (PR #652)
* On startup, only jiggle height and not width. (PR #653)
* Fix issue preventing FreeDV from being linked with older versions of Xcode. (PR #654)
* Fix issue preventing TX audio from resuming after going from TX->RX in full duplex mode. (PR #655)
2. Enhancements:
* Allow user to refresh status message even if it hasn't been changed. (PR #632)
* Increase priority of status message highlight. (PR #632)
Expand Down
1 change: 1 addition & 0 deletions src/ongui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -876,6 +876,7 @@ void MainFrame::togglePTT(void) {
}
}
g_tx = false;
endingTx = false;

// tx-> rx transition, swap to the page we were on for last rx
m_auiNbookCtrl->ChangeSelection(wxGetApp().appConfiguration.currentNotebookTab);
Expand Down

0 comments on commit 7e8af5a

Please sign in to comment.