From 8c34e34e6895440ad95890c688f1c3ad4c6bb746 Mon Sep 17 00:00:00 2001 From: mitshell Date: Mon, 25 Nov 2024 16:06:49 +0100 Subject: [PATCH] UEPOL: fix time window structure --- pycrate_mobile/TS24526_UEPOL.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pycrate_mobile/TS24526_UEPOL.py b/pycrate_mobile/TS24526_UEPOL.py index 63940a19..7b355ac9 100644 --- a/pycrate_mobile/TS24526_UEPOL.py +++ b/pycrate_mobile/TS24526_UEPOL.py @@ -251,8 +251,14 @@ class _RouteSelectDescCompAccessType(Envelope): # Table 5.2.1, time window type class _RouteSelectDescCompTimeWin(Envelope): _GEN = ( - Uint32('Second'), - Uint32('Fraction') + Envelope('StartTime', GEN=( + Uint32('Second'), + Uint32('Fraction') + )), + Envelope('StopTime', GEN=( + Uint32('Second'), + Uint32('Fraction') + )) )