aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Tsou <tom.tsou@ettus.com>2016-10-04 11:51:43 -0700
committerTom Tsou <tom.tsou@ettus.com>2016-10-04 11:52:38 -0700
commit5e3e23c337a2d4f0a2032e9af93a1d3bd5d798e6 (patch)
treea5c2946ffa73c760c348002fd5a592f769735492
parent8a2a0f0e17760a0fce9e834c08d37b4d0ebda246 (diff)
sigproc: Remove logically dead code path
Burst detection core always operates at 1 sample-per-symbol. Fixes: Coverity CID 149343 Signed-off-by: Tom Tsou <tom.tsou@ettus.com>
-rw-r--r--Transceiver52M/sigProcLib.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Transceiver52M/sigProcLib.cpp b/Transceiver52M/sigProcLib.cpp
index 7babc55..be89bb9 100644
--- a/Transceiver52M/sigProcLib.cpp
+++ b/Transceiver52M/sigProcLib.cpp
@@ -1790,10 +1790,6 @@ static int detectBurst(signalVector &burst,
/* Normalize our channel gain */
*amp = *amp / sync->gain;
- /* Compenate for residual rotation with dual Laurent pulse */
- if (sps == 4)
- *amp = *amp * complex(0.0, 1.0);
-
/* Compensate for residuate time lag */
*toa = *toa - sync->toa;