From 8878a22bd23d8d695dcc5adb8055862910d36a61 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Sun, 1 Nov 2015 11:34:20 -0500 Subject: [PATCH] re-enable module dc correct --- src/sdr/SoapySDRThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdr/SoapySDRThread.cpp b/src/sdr/SoapySDRThread.cpp index 558163a..a8b5084 100644 --- a/src/sdr/SoapySDRThread.cpp +++ b/src/sdr/SoapySDRThread.cpp @@ -81,7 +81,7 @@ void SDRThread::init() { if (chan->hasHardwareDC()) { hasHardwareDC.store(true); // wxGetApp().sdrEnumThreadNotify(SDREnumerator::SDR_ENUM_MESSAGE, std::string("Found hardware DC offset correction support, internal disabled.")); - device->setDCOffsetMode(SOAPY_SDR_RX, chan->getChannel(), false); + device->setDCOffsetMode(SOAPY_SDR_RX, chan->getChannel(), true); } else { hasHardwareDC.store(false); }