Skip to content

Commit

Permalink
Fix issue with squelch remaining enabled on 1600 even when disabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Sep 17, 2023
1 parent 06d4c11 commit ff1bb93
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 ff1bb93

Please sign in to comment.