Decrease lower squelch boundary.

This commit is contained in:
Alexandru Csete 2012-05-04 21:55:48 +02:00
parent c2e8d7389b
commit 13c4a3a119
2 changed files with 3 additions and 3 deletions

View File

@ -676,7 +676,7 @@ as rf_freq + filter_offset</string>
<string>Squelch level in dBFS</string>
</property>
<property name="minimum">
<number>-1000</number>
<number>-1500</number>
</property>
<property name="maximum">
<number>0</number>
@ -685,7 +685,7 @@ as rf_freq + filter_offset</string>
<number>100</number>
</property>
<property name="value">
<number>-1000</number>
<number>-1500</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>

View File

@ -72,7 +72,7 @@ receiver::receiver(const std::string input_device, const std::string audio_devic
nb = make_rx_nb_cc(d_bandwidth, 3.3, 2.5);
filter = make_rx_filter(d_bandwidth, d_filter_offset, -5000.0, 5000.0, 1000.0);
agc = make_rx_agc_cc(d_bandwidth, true, -100, 0, 2, 100, false);
sql = gr_make_simple_squelch_cc(-100.0, 0.001);
sql = gr_make_simple_squelch_cc(-150.0, 0.001);
meter = make_rx_meter_c(DETECTOR_TYPE_RMS);
demod_ssb = gr_make_complex_to_real(1);
demod_fm = make_rx_demod_fm(d_bandwidth, d_bandwidth, 5000.0, 530.0e-6);