mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-06-11 18:28:57 -04:00
range / suppression adjustments
This commit is contained in:
+2
-2
@@ -373,8 +373,8 @@ void AppFrame::OnIdle(wxIdleEvent& event) {
|
||||
if (demodBw > wxGetApp().getSampleRate() / 2) {
|
||||
demodBw = wxGetApp().getSampleRate() / 2;
|
||||
}
|
||||
if (demodBw < 50000) {
|
||||
demodBw = 50000;
|
||||
if (demodBw < 30000) {
|
||||
demodBw = 30000;
|
||||
}
|
||||
demodWaterfallCanvas->setBandwidth(demodBw);
|
||||
demodSpectrumCanvas->setBandwidth(demodBw);
|
||||
|
||||
Reference in New Issue
Block a user