Transceiver::expectedCorrType(): RACH is always 8-bit on PTCCH/U

It does not make sense for the MS to use 11-bit Access Bursts on
PTCCH/U because the payload does not matter, only the ToA does.

Change-Id: I5fb9f1c6810cdcd26a885b183e414d01d422eb28
This commit is contained in:
Vadim Yanitskiy 2022-10-26 04:11:28 +07:00
parent 2f20c564bf
commit 00ddcfaf50
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ CorrType Transceiver::expectedCorrType(GSM::Time currTime,
case XIII: {
int mod52 = burstFN % 52;
if ((mod52 == 12) || (mod52 == 38))
return cfg->ext_rach ? EXT_RACH : RACH;
return RACH; /* RACH is always 8-bit on PTCCH/U */
else if ((mod52 == 25) || (mod52 == 51))
return IDLE;
else /* Enable 8-PSK burst detection if EDGE is enabled */