aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/radioInterface.h
diff options
context:
space:
mode:
authorThomas Tsou <tom@tsou.cc>2013-04-08 13:45:55 -0400
committerAlexander Chemeris <Alexander.Chemeris@gmail.com>2013-06-24 01:46:34 +0400
commit801ce60d4af876badb7beed09e9ee24674f310ea (patch)
treee468b1862717c8ac29a625d000be5a6204c4cea3 /Transceiver52M/radioInterface.h
parented64e799bc051e7cffe71ead0b76bf8bcd9c6f4c (diff)
Transceiver52M: Remove and rename oversampling variables
The transceiver only uses a single integer oversampling value, which is more simply referred to as samples-per-symbol. mRadioOversampling --> mSPS mTransceiverOversampling (removed) Signed-off-by: Thomas Tsou <tom@tsou.cc>
Diffstat (limited to 'Transceiver52M/radioInterface.h')
-rw-r--r--Transceiver52M/radioInterface.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/Transceiver52M/radioInterface.h b/Transceiver52M/radioInterface.h
index d1131c6..216cf3e 100644
--- a/Transceiver52M/radioInterface.h
+++ b/Transceiver52M/radioInterface.h
@@ -54,8 +54,6 @@ private:
int samplesPerSymbol; ///< samples per GSM symbol
int receiveOffset; ///< offset b/w transmit and receive GSM timestamps, in timeslots
- int mRadioOversampling;
- int mTransceiverOversampling;
bool mOn; ///< indicates radio is on
@@ -88,8 +86,7 @@ public:
/** constructor */
RadioInterface(RadioDevice* wRadio = NULL,
int receiveOffset = 3,
- int wRadioOversampling = SAMPSPERSYM,
- int wTransceiverOversampling = SAMPSPERSYM,
+ int wSPS = SAMPSPERSYM,
GSM::Time wStartTime = GSM::Time(0));
/** destructor */