Skip to content

Commit

Permalink
UEPOL: fix time window structure
Browse files Browse the repository at this point in the history
  • Loading branch information
mitshell committed Nov 25, 2024
1 parent 0b8309e commit 8c34e34
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pycrate_mobile/TS24526_UEPOL.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
))
)


Expand Down

0 comments on commit 8c34e34

Please sign in to comment.