Skip to content

Commit 7e8af5a

Browse files
authored
Merge pull request #655 from drowe67/ms-full-duplex-bug
Fix issue preventing TX audio from resuming after going from TX->RX in full duplex mode.
2 parents 34053d4 + eeb6f03 commit 7e8af5a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ endif(APPLE)
4848

4949
# Adds a tag to the end of the version string. Leave empty
5050
# for official release builds.
51-
set(FREEDV_VERSION_TAG "devel")
51+
set(FREEDV_VERSION_TAG "")
5252

5353
# Prevent in-source builds to protect automake/autoconf config.
5454
# If an in-source build is attempted, you will still need to clean up a few

USER_MANUAL.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
889889

890890
# Release Notes
891891

892-
## V1.9.7 TBD 2024
892+
## V1.9.7 January 2024
893893

894894
1. Bugfixes:
895895
* Use double precision instead of float for loading frequency list. (PR #627)
@@ -909,6 +909,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
909909
* Fix issue preventing FreeDV startup on macOS <= 10.13. (PR #652)
910910
* On startup, only jiggle height and not width. (PR #653)
911911
* Fix issue preventing FreeDV from being linked with older versions of Xcode. (PR #654)
912+
* Fix issue preventing TX audio from resuming after going from TX->RX in full duplex mode. (PR #655)
912913
2. Enhancements:
913914
* Allow user to refresh status message even if it hasn't been changed. (PR #632)
914915
* Increase priority of status message highlight. (PR #632)

src/ongui.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -876,6 +876,7 @@ void MainFrame::togglePTT(void) {
876876
}
877877
}
878878
g_tx = false;
879+
endingTx = false;
879880

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

0 commit comments

Comments
 (0)