Skip to content

Commit

Permalink
Fixed a bug that FM modem is not setup properly under simplex mode. T…
Browse files Browse the repository at this point in the history
…his also suggests no one maybe ever tried the simplex mode with a FM reflector. Yes I did a FM reflector for that test ;)
  • Loading branch information
shawnchain committed Sep 16, 2022
1 parent fe195c4 commit 5eee7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ bool CModem::open()
return false;
}

if (m_fmEnabled && m_duplex) {
if (m_fmEnabled) {
ret = setFMCallsignParams();
if (!ret) {
m_port->close();
Expand Down

0 comments on commit 5eee7c1

Please sign in to comment.