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>
This commit is contained in:
Tom Tsou 2016-07-19 11:28:51 -07:00
parent 7c741ec6a6
commit 4609f3285c
1 changed files with 1 additions and 1 deletions

View File

@ -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);