Skip to content

Commit

Permalink
Merge pull request #9 from drowe67/ms-1600-squelch-2
Browse files Browse the repository at this point in the history
Fix issue with squelch remaining enabled on 1600 mode even when disabled.
  • Loading branch information
drowe67 authored Sep 23, 2023
2 parents 27ba7f4 + ff1bb93 commit e14d690
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/freedv_1600.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@

void freedv_1600_open(struct freedv *f) {
f->snr_squelch_thresh = 2.0;
f->squelch_en = true;
f->squelch_en = false;
f->passthrough_gain = 0.25;
f->tx_sync_bit = 0;
int Nc = 16;
f->fdmdv = fdmdv_create(Nc);
Expand Down

0 comments on commit e14d690

Please sign in to comment.