From f7e9d805e348cd34ebdc3a95fac01480b380dd39 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Sun, 27 Sep 2015 19:18:51 -0400 Subject: [PATCH] Whoops, HackRF needs more than 16Mhz :) --- src/AppFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppFrame.cpp b/src/AppFrame.cpp index 9e64638..837f680 100644 --- a/src/AppFrame.cpp +++ b/src/AppFrame.cpp @@ -585,7 +585,7 @@ void AppFrame::OnMenu(wxCommandEvent& event) { wxGetApp().setSampleRate(3200000); break; case wxID_BANDWIDTH_MANUAL: - long bw = wxGetNumberFromUser("Set the bandwidth manually", "Sample Rate (Hz), i.e. 2560000 for 2.56M", "Manual Bandwidth Entry", wxGetApp().getSampleRate(), 250000, 16000000, this); + long bw = wxGetNumberFromUser("Set the bandwidth manually", "Sample Rate (Hz), i.e. 2560000 for 2.56M", "Manual Bandwidth Entry", wxGetApp().getSampleRate(), 250000, 25000000, this); if (bw != -1) { wxGetApp().setSampleRate(bw); }