top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

LTE: What does the significance of "gapOffset" i.e inside MeasGapConfig ?

+2 votes
1,398 views
LTE: What does the significance of "gapOffset" i.e inside MeasGapConfig ?
posted Mar 6, 2014 by Harshita

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The "gapOffset" parameter is being present inside MeasGapConfig IE, which goes as part of MeasConfig to an UE.
gapOffset may have either gp0 or gp1.
1. gp0 ranges from 0 to 39.
2. gp1 ranges from 0 to 79.

By using the value of gapOffset, UE finds out the SFN and subframe of that SFN to perform measurement.

I have written the action taken by an UE once it receives RRC ConnectionReconfiguration for measConfig.

1> if measGapConfig is set to setup:
2> if a measurement gap configuration is already setup, release the measurement gap configuration;
2> setup the measurement gap configuration indicated by the measGapConfig in accordance with the received gapOffset, i.e., each gap starts at an SFN and subframe meeting the following condition:
SFN mod T = FLOOR(gapOffset/10);
subframe = gapOffset mod 10;
with T = MGRP/10 as defined in TS 36.133 [16];
1> else:
2> release the measurement gap configuration;

Hope I have answered your query :) .

answer Mar 6, 2014 by Vimal Kumar Mishra
...