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
c456d695
Commit
c456d695
authored
3 weeks ago
by
Guido Casati
Committed by
francescomani
2 weeks ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add telnet trigger to force C-RNTI RA on the UE
parent
44692187
Branches unavailable
2025.w13
2025.w12
2025.w11
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
common/utils/telnetsrv/telnetsrv_ciUE.c
common/utils/telnetsrv/telnetsrv_ciUE.c
+9
-0
No files found.
common/utils/telnetsrv/telnetsrv_ciUE.c
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.
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