aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/Transceiver.cpp
diff options
context:
space:
mode:
authorTom Tsou <tom.tsou@ettus.com>2016-07-19 11:28:51 -0700
committerTom Tsou <tom.tsou@ettus.com>2016-07-19 11:30:49 -0700
commit4609f3285ca047c9cf0a44f93a8653ad730b9d0e (patch)
tree90d955ed00c8102ea4d6146c99894d0223097d01 /Transceiver52M/Transceiver.cpp
parent7c741ec6a67d6008698d0a3efb770fb1533106e8 (diff)
transceiver: Fix 4 SPS receive TOA value
The time-of-arrival (TOA) value out of sigProc is specified in symbols or, equivalently, 1 sample per symbol and does not need to be normalized. Signed-off-by: Tom Tsou <tom.tsou@ettus.com>
Diffstat (limited to 'Transceiver52M/Transceiver.cpp')
-rw-r--r--Transceiver52M/Transceiver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Transceiver52M/Transceiver.cpp b/Transceiver52M/Transceiver.cpp
index 36163fa..4db0aaa 100644
--- a/Transceiver52M/Transceiver.cpp
+++ b/Transceiver52M/Transceiver.cpp
@@ -694,7 +694,7 @@ SoftVector *Transceiver::pullRadioVector(GSM::Time &wTime, double &RSSI, bool &i
return NULL;
}
- timingOffset = toa / mSPSRx;
+ timingOffset = toa;
bits = demodulate(*burst, amp, toa, type);