Whoops, HackRF needs more than 16Mhz :)

This commit is contained in:
Charles J. Cliffe 2015-09-27 19:18:51 -04:00
parent 89ecf8eb9c
commit f7e9d805e3
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}