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
Commits
c456d695
Commit
c456d695
authored
1 week ago
by
Guido Casati
Committed by
Francesco Mani
5 days ago
Browse files
Options
Downloads
Patches
Plain Diff
Add telnet trigger to force C-RNTI RA on the UE
parent
44692187
No related branches found
No related tags found
2 merge requests
!3309
Integration: `2025.w11`
,
!3307
Draft: Add CI UE test for RA with C-RNTI
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/utils/telnetsrv/telnetsrv_ciUE.c
+9
-0
9 additions, 0 deletions
common/utils/telnetsrv/telnetsrv_ciUE.c
with
9 additions
and
0 deletions
common/utils/telnetsrv/telnetsrv_ciUE.c
+
9
−
0
View file @
c456d695
...
...
@@ -94,11 +94,20 @@ int force_RRC_IDLE(char *buf, int debug, telnet_printfunc_t prnt)
return
0
;
}
/** @brief Trigger RA with Msg3 C-RNTI */
int
force_crnti_ra
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
)
{
NR_UE_MAC_INST_t
*
mac
=
get_mac_inst
(
0
);
trigger_MAC_UE_RA
(
mac
,
NULL
);
return
0
;
}
/* Telnet shell command definitions */
static
telnetshell_cmddef_t
cicmds
[]
=
{
{
"sync_state"
,
"[UE_ID(int,opt)]"
,
get_sync_state
},
{
"force_rlf"
,
""
,
force_rlf
},
{
"force_RRC_IDLE"
,
""
,
force_RRC_IDLE
},
{
"force_crnti_ra"
,
""
,
force_crnti_ra
},
{
""
,
""
,
NULL
},
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment