sigProcLib: Change number of head bits in detectRACHBurst() from 4 to 8.

To match GSM 05.02 Access Burst definition.
This commit is contained in:
Alexander Chemeris 2016-03-19 21:16:58 +03:00
parent 9460154b36
commit 7ed93551ba
1 changed files with 2 additions and 2 deletions

View File

@ -1849,7 +1849,7 @@ int detectGeneralBurst(signalVector &rxBurst,
*
* Correlation window parameters:
* target: Tail bits + RACH length (reduced from 41 to a multiple of 4)
* head: Search 4 symbols before target
* head: Search 8 symbols before target
* tail: Search 4 symbols + maximum expected delay
*/
int detectRACHBurst(signalVector &rxBurst,
@ -1863,7 +1863,7 @@ int detectRACHBurst(signalVector &rxBurst,
CorrelationSequence *sync;
target = 8 + 40;
head = 4;
head = 8;
tail = 4 + maxTOA;
sync = gRACHSequence;