aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/device/usrp1/USRPDevice.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-01-11 21:36:34 +0100
committerHarald Welte <laforge@gnumonks.org>2019-01-11 21:46:45 +0100
commita944001873538fbad099ade61de0e5682515a32e (patch)
tree05e6d2ae4dbfdfbf360bb6221ac37f430c2323fb /Transceiver52M/device/usrp1/USRPDevice.h
parent42c165605a00f290d16f1de805604eb76e2fc753 (diff)
usrp1: Remove uninitialized skipRx logic
There appears to have been some logic to operate a USRP1 in transmit-only GSM mode. This is achieved using the skipRx member of the transceiver object. However, there's nobody that ever initializes it properly, and hence the feature is not possible to use anyway. I don't think this has any valid use case, so let's remove it. Change-Id: I616193f1e9aaefbf4ceb26761657811093f28b6f
Diffstat (limited to 'Transceiver52M/device/usrp1/USRPDevice.h')
-rw-r--r--Transceiver52M/device/usrp1/USRPDevice.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Transceiver52M/device/usrp1/USRPDevice.h b/Transceiver52M/device/usrp1/USRPDevice.h
index 451b5a9..521d81d 100644
--- a/Transceiver52M/device/usrp1/USRPDevice.h
+++ b/Transceiver52M/device/usrp1/USRPDevice.h
@@ -55,7 +55,6 @@ private:
unsigned long long samplesWritten; ///< number of samples sent to USRP
bool started; ///< flag indicates USRP has started
- bool skipRx; ///< set if USRP is transmit-only.
static const unsigned int currDataSize_log2 = 21;
static const unsigned long currDataSize = (1 << currDataSize_log2);