Merge pull request #9 from drowe67/ms-1600-squelch-2

Fix issue with squelch remaining enabled on 1600 mode even when disabled.
pull/30/head
drowe67 2023-09-24 06:58:34 +09:30 committed by GitHub
commit e14d6909a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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);