Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
6900edbf
Commit
6900edbf
authored
Nov 24, 2025
by
Raghavendra Dinavahi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UE NTN: Fix in case SIB19 periodicity is greater than 2 secs
parent
479be40b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
openair2/RRC/NR_UE/rrc_UE.c
openair2/RRC/NR_UE/rrc_UE.c
+3
-0
No files found.
openair2/RRC/NR_UE/rrc_UE.c
View file @
6900edbf
...
...
@@ -259,6 +259,9 @@ static int get_ntn_timervalues(NR_UE_RRC_SI_INFO *SI_info, NR_NTN_Config_r17_t *
// TODO remove the hardoded values and define a better strategy to determine the time of expiry
// with real GEO/LEO/MEO SATs.
int
expire_before_ms
=
((
val430
>=
120
)
?
10000
:
2000
);
// SIB19 periodicity even for LEO could be configured to be more than epoch time interval (2 secs)
if
(
expire_before_ms
<
2
*
sib19_periodicity_ms
)
expire_before_ms
=
2
*
sib19_periodicity_ms
;
int
diff
=
*
val430_ms
-
expire_before_ms
;
int
sib19_timer_ms
=
(
diff
>
0
)
?
diff
:
((
*
val430_ms
-
sib19_periodicity_ms
)
>
0
)
?
(
*
val430_ms
-
sib19_periodicity_ms
)
:
0
;
LOG_I
(
NR_RRC
,
"val430:%d s, T430:%d ms, sib19_timer:%d ms
\n
"
,
val430
,
*
val430_ms
,
sib19_timer_ms
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment