diff --git a/rtl_sdr_source/src/main.cpp b/rtl_sdr_source/src/main.cpp index 7b499fff..db054e02 100644 --- a/rtl_sdr_source/src/main.cpp +++ b/rtl_sdr_source/src/main.cpp @@ -160,7 +160,7 @@ public: config.acquire(); if (!config.conf["devices"].contains(selectedDevName)) { created = true; - config.conf["devices"][selectedDevName]["sampleRate"] = sampleRate; + config.conf["devices"][selectedDevName]["sampleRate"] = 2400000.0; config.conf["devices"][selectedDevName]["directSampling"] = directSamplingMode; config.conf["devices"][selectedDevName]["biasT"] = biasT; config.conf["devices"][selectedDevName]["offsetTuning"] = offsetTuning; diff --git a/rtl_tcp_source/src/main.cpp b/rtl_tcp_source/src/main.cpp index 745f93d2..1699ea47 100644 --- a/rtl_tcp_source/src/main.cpp +++ b/rtl_tcp_source/src/main.cpp @@ -53,7 +53,7 @@ public: RTLTCPSourceModule(std::string name) { this->name = name; - sampleRate = 2560000.0; + sampleRate = 2400000.0; int srCount = sizeof(sampleRatesTxt) / sizeof(char*); for (int i = 0; i < srCount; i++) {