Skip to content

Commit 8acbc8b

Browse files
committed
UEPOL: fix NR Cell IDs structure
1 parent 8c34e34 commit 8acbc8b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pycrate_mobile/TS24526_UEPOL.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ class _RouteSelectDescCompTimeWin(Envelope):
262262
)
263263

264264

265-
# Table 5.2.2: Location criteria
265+
# Table 5.2.2: Location criteria
266266
class _LocAreaEUTRACellID(Envelope):
267267
_GEN = (
268268
PLMN(),
@@ -283,7 +283,7 @@ def __init__(self, *args, **kwargs):
283283
self[1].set_numauto(lambda: self[0].get_num())
284284

285285

286-
class _LocAreaEUTRACellID(Envelope):
286+
class _LocAreaNRCellID(Envelope):
287287
_GEN = (
288288
PLMN(),
289289
Buf('NRCellID', bl=36, rep=REPR_HEX),
@@ -294,7 +294,7 @@ class _LocAreaEUTRACellID(Envelope):
294294
class _LocAreaCompNR(Envelope):
295295
_GEN = (
296296
Uint8('Num'),
297-
Sequence('CellIDs', GEN=_LocAreaEUTRACellID('NRCellID'))
297+
Sequence('CellIDs', GEN=_LocAreaNRCellID('NRCellID'))
298298
)
299299

300300
def __init__(self, *args, **kwargs):
@@ -322,7 +322,7 @@ def __init__(self, *args, **kwargs):
322322
self[1].set_numauto(lambda: self[0].get_num())
323323

324324

325-
# Figure 5.2.6: Location area
325+
# Figure 5.2.6: Location area
326326
_RouteSelectLocAreaType_dict = {
327327
1 : 'E-UTRA cell identities list',
328328
2 : 'NR cell identities list',

0 commit comments

Comments
 (0)