From 290bf5e32a7f78e1aa9d74f034be7b798002f87d Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Sun, 2 Jan 2022 19:02:12 +0100 Subject: [PATCH] Fixed invalid default config --- core/src/core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/core.cpp b/core/src/core.cpp index a82c97b5..c68d978e 100644 --- a/core/src/core.cpp +++ b/core/src/core.cpp @@ -200,7 +200,7 @@ int sdrpp_main(int argc, char* argv[]) { defConfig["moduleInstances"]["LimeSDR Source"]["module"] = "limesdr_source"; defConfig["moduleInstances"]["LimeSDR Source"]["enabled"] = true; defConfig["moduleInstances"]["RFspace Source"]["module"] = "rfspace_source"; - defConfig["moduleInstances"]["RTL-SDR Source"]["enabled"] = true; + defConfig["moduleInstances"]["RFspace Source"]["enabled"] = true; defConfig["moduleInstances"]["RTL-SDR Source"]["module"] = "rtl_sdr_source"; defConfig["moduleInstances"]["RTL-SDR Source"]["enabled"] = true; defConfig["moduleInstances"]["RTL-TCP Source"]["module"] = "rtl_tcp_source";