mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-03-23 20:58:42 -04:00
LimeSDR output: limit interpolation factor to 32
This commit is contained in:
parent
752ceab420
commit
871f0eeb22
plugins/samplesink/plutosdroutput
@ -182,7 +182,7 @@ void PlutoSDROutputGUI::on_loPPM_valueChanged(int value)
|
||||
|
||||
void PlutoSDROutputGUI::on_swInterp_currentIndexChanged(int index)
|
||||
{
|
||||
m_settings.m_log2Interp = index > 6 ? 6 : index;
|
||||
m_settings.m_log2Interp = index > 5 ? 5 : index;
|
||||
sendSettings();
|
||||
}
|
||||
|
||||
|
@ -308,11 +308,6 @@
|
||||
<string>32</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>64</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
|
Loading…
Reference in New Issue
Block a user