Skip to content

Commit

Permalink
Merge branch 'ms-freq-before-mode' into ms-rel-v1812
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Jun 18, 2023
2 parents d49fbad + d2313a1 commit dadcef0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions USER_MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
* Clear audio plots when recording or playback starts. (PR #439)
* Clear button now clears the callsign list. (PR #436)
* Fix bug causing the PTT button to stay red after the voice keyer finishes TX. (PR #440)
* Hamlib: set mode before frequency to avoid accidental offsetting. (PR #442)
2. Enhancements:
* Add the ability to request that another FreeDV Reporter user QSY. (PR #434)
3. Build system:
Expand Down
2 changes: 1 addition & 1 deletion src/hamlib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ void Hamlib::setFrequencyAndMode(uint64_t frequencyHz, bool analog)
}

vfo_t currVfo = getCurrentVfo_();
setFrequencyHelper_(currVfo, frequencyHz);
setMode(analog);
setFrequencyHelper_(currVfo, frequencyHz);
}

void Hamlib::setModeHelper_(vfo_t currVfo, rmode_t mode)
Expand Down

0 comments on commit dadcef0

Please sign in to comment.