mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-12-24 18:08:27 +01:00
Added airspy_source to defaults
This commit is contained in:
parent
29e9db184f
commit
a2d93915e8
@ -126,6 +126,7 @@ int sdrpp_main(int argc, char *argv[]) {
|
|||||||
defConfig["moduleInstances"]["PlutoSDR Source"] = "plutosdr_source";
|
defConfig["moduleInstances"]["PlutoSDR Source"] = "plutosdr_source";
|
||||||
defConfig["moduleInstances"]["RTL-TCP Source"] = "rtl_tcp_source";
|
defConfig["moduleInstances"]["RTL-TCP Source"] = "rtl_tcp_source";
|
||||||
defConfig["moduleInstances"]["AirspyHF+ Source"] = "airspyhf_source";
|
defConfig["moduleInstances"]["AirspyHF+ Source"] = "airspyhf_source";
|
||||||
|
defConfig["moduleInstances"]["Airspy Source"] = "airspy_source";
|
||||||
defConfig["moduleInstances"]["HackRF Source"] = "hackrf_source";
|
defConfig["moduleInstances"]["HackRF Source"] = "hackrf_source";
|
||||||
defConfig["moduleInstances"]["Audio Sink"] = "audio_sink";
|
defConfig["moduleInstances"]["Audio Sink"] = "audio_sink";
|
||||||
|
|
||||||
|
@ -61,6 +61,7 @@ fftwf_plan p;
|
|||||||
float* tempFFT;
|
float* tempFFT;
|
||||||
float* FFTdata;
|
float* FFTdata;
|
||||||
char buf[1024];
|
char buf[1024];
|
||||||
|
bool experimentalZoom = false;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -551,6 +552,7 @@ void drawWindow() {
|
|||||||
//sigpath::signalPath.setDCBiasCorrection(dcbias.val);
|
//sigpath::signalPath.setDCBiasCorrection(dcbias.val);
|
||||||
}
|
}
|
||||||
ImGui::Checkbox("Show demo window", &demoWindow);
|
ImGui::Checkbox("Show demo window", &demoWindow);
|
||||||
|
ImGui::Checkbox("Experimental zoom", &experimentalZoom);
|
||||||
ImGui::Spacing();
|
ImGui::Spacing();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -582,7 +584,7 @@ void drawWindow() {
|
|||||||
ImGui::SetCursorPosX((ImGui::GetWindowSize().x / 2.0) - (ImGui::CalcTextSize("Zoom").x / 2.0));
|
ImGui::SetCursorPosX((ImGui::GetWindowSize().x / 2.0) - (ImGui::CalcTextSize("Zoom").x / 2.0));
|
||||||
ImGui::Text("Zoom");
|
ImGui::Text("Zoom");
|
||||||
ImGui::SetCursorPosX((ImGui::GetWindowSize().x / 2.0) - 10);
|
ImGui::SetCursorPosX((ImGui::GetWindowSize().x / 2.0) - 10);
|
||||||
if (ImGui::VSliderFloat("##_7_", ImVec2(20.0, 150.0), &bw, gui::waterfall.getBandwidth(), 1000.0, "")) {
|
if (ImGui::VSliderFloat("##_7_", ImVec2(20.0, 150.0), &bw, gui::waterfall.getBandwidth(), 1000.0, "", (experimentalZoom ? 2.0 : 1.0))) {
|
||||||
gui::waterfall.setViewBandwidth(bw);
|
gui::waterfall.setViewBandwidth(bw);
|
||||||
if (vfo != NULL) {
|
if (vfo != NULL) {
|
||||||
gui::waterfall.setViewOffset(vfo->centerOffset); // center vfo on screen
|
gui::waterfall.setViewOffset(vfo->centerOffset); // center vfo on screen
|
||||||
|
Loading…
Reference in New Issue
Block a user