Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Merge requests
!2037
integration_2023_w13
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
integration_2023_w13
integration_2023_w13
into
develop
Overview
11
Commits
60
Pipelines
0
Changes
3
All threads resolved!
Hide all comments
Merged
Robert Schmidt
requested to merge
integration_2023_w13
into
develop
2 years ago
Overview
11
Commits
60
Pipelines
0
Changes
3
All threads resolved!
Hide all comments
Expand
!1945 (merged)
Free RNTI related structures at PHY after UE disconnection
!2011 (merged)
Creation of new pipeline LTE-TDD-2x2-container
!1854 (merged)
Handle reconfigurationWithSync
!2019 (merged)
bugfix: LDPC decoding in the gNB: clear d properly
!2038 (merged)
Fix DL 2x2 errors
!2039 (merged)
Adding test-case in XML to reset USRP in LTE-TDD pipeline
!2008 (merged)
Implement NR-UE Deregistration procedure
!2023 (merged)
Rework PDCP OAI API to allow custom SRB data forwarding (e.g., in F1)
!2015 (merged)
Update documentation: CI, general README.md, overview of doc README, various improvements
Edited
2 years ago
by
Robert Schmidt
0
0
Merge request reports
Viewing commit
cf8dff20
Prev
Next
Show latest version
3 files
+
34
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
cf8dff20
Implementation to update the RRC timers at UE
· cf8dff20
Roberto Louro Magueta
authored
2 years ago
executables/nr-uesoftmodem.c
+
5
−
0
Options
@@ -211,6 +211,11 @@ int create_tasks_nrue(uint32_t ue_nb) {
}
itti_wait_ready
(
0
);
// Thread to update the RRC timers (in msec) at UE
pthread_t
timers_update
;
threadCreate
(
&
timers_update
,
nr_rrc_timers_update
,
NULL
,
"nr_rrc_timer_update"
,
-
1
,
OAI_PRIORITY_RT_LOW
);
return
0
;
}
Loading