Skip to content

Commit a2d9391

Browse files
author
Ryzerth
committed
Added airspy_source to defaults
1 parent 29e9db1 commit a2d9391

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

core/src/core.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ int sdrpp_main(int argc, char *argv[]) {
126126
defConfig["moduleInstances"]["PlutoSDR Source"] = "plutosdr_source";
127127
defConfig["moduleInstances"]["RTL-TCP Source"] = "rtl_tcp_source";
128128
defConfig["moduleInstances"]["AirspyHF+ Source"] = "airspyhf_source";
129+
defConfig["moduleInstances"]["Airspy Source"] = "airspy_source";
129130
defConfig["moduleInstances"]["HackRF Source"] = "hackrf_source";
130131
defConfig["moduleInstances"]["Audio Sink"] = "audio_sink";
131132

core/src/gui/main_window.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ fftwf_plan p;
6161
float* tempFFT;
6262
float* FFTdata;
6363
char buf[1024];
64+
bool experimentalZoom = false;
6465

6566

6667

@@ -551,6 +552,7 @@ void drawWindow() {
551552
//sigpath::signalPath.setDCBiasCorrection(dcbias.val);
552553
}
553554
ImGui::Checkbox("Show demo window", &demoWindow);
555+
ImGui::Checkbox("Experimental zoom", &experimentalZoom);
554556
ImGui::Spacing();
555557
}
556558

@@ -582,7 +584,7 @@ void drawWindow() {
582584
ImGui::SetCursorPosX((ImGui::GetWindowSize().x / 2.0) - (ImGui::CalcTextSize("Zoom").x / 2.0));
583585
ImGui::Text("Zoom");
584586
ImGui::SetCursorPosX((ImGui::GetWindowSize().x / 2.0) - 10);
585-
if (ImGui::VSliderFloat("##_7_", ImVec2(20.0, 150.0), &bw, gui::waterfall.getBandwidth(), 1000.0, "")) {
587+
if (ImGui::VSliderFloat("##_7_", ImVec2(20.0, 150.0), &bw, gui::waterfall.getBandwidth(), 1000.0, "", (experimentalZoom ? 2.0 : 1.0))) {
586588
gui::waterfall.setViewBandwidth(bw);
587589
if (vfo != NULL) {
588590
gui::waterfall.setViewOffset(vfo->centerOffset); // center vfo on screen

0 commit comments

Comments
 (0)