mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-07-31 05:02:24 -04:00
AirspyHF: limit decimation to 32
This commit is contained in:
parent
4db248c26a
commit
7c185ac268
@ -285,7 +285,7 @@ void AirspyHFGui::on_sampleRate_currentIndexChanged(int index)
|
|||||||
|
|
||||||
void AirspyHFGui::on_decim_currentIndexChanged(int index)
|
void AirspyHFGui::on_decim_currentIndexChanged(int index)
|
||||||
{
|
{
|
||||||
if ((index <0) || (index > 6))
|
if ((index < 0) || (index > 5))
|
||||||
return;
|
return;
|
||||||
m_settings.m_log2Decim = index;
|
m_settings.m_log2Decim = index;
|
||||||
sendSettings();
|
sendSettings();
|
||||||
|
@ -352,7 +352,7 @@
|
|||||||
<string>Decimation factor</string>
|
<string>Decimation factor</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>3</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -384,11 +384,6 @@
|
|||||||
<string>32</string>
|
<string>32</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<property name="text">
|
|
||||||
<string>64</string>
|
|
||||||
</property>
|
|
||||||
</item>
|
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user