From 63d0f2a496fd87a2a047658c87f6a1a75d664535 Mon Sep 17 00:00:00 2001 From: Alexander Chemeris Date: Fri, 17 Mar 2017 20:47:44 -0700 Subject: WIP:sigProcLib: Reduce burst detection window for NB. Otherwise we detect bursts with search window far beyond specified. Change-Id: If3cb40d2311504a13c03e1fbccad663ac201d9a4 --- Transceiver52M/sigProcLib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Transceiver52M/sigProcLib.cpp b/Transceiver52M/sigProcLib.cpp index 3514293..1786873 100644 --- a/Transceiver52M/sigProcLib.cpp +++ b/Transceiver52M/sigProcLib.cpp @@ -1855,8 +1855,8 @@ int analyzeTrafficBurst(const signalVector &burst, unsigned tsc, float threshold return -SIGERR_UNSUPPORTED; target = 3 + 58 + 16 + 5; - head = 6; - tail = 6 + max_toa; + head = 3; + tail = 3 + max_toa; sync = gMidambles[tsc]; rc = detectGeneralBurst(burst, threshold, sps, amplitude, toa, -- cgit v1.2.3