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
917b88f5
Commit
917b88f5
authored
May 02, 2024
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patch to trigger reestablishment
parent
0488abfe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
executables/nr-uesoftmodem.c
executables/nr-uesoftmodem.c
+2
-0
openair2/RRC/NR_UE/rrc_UE.c
openair2/RRC/NR_UE/rrc_UE.c
+15
-0
No files found.
executables/nr-uesoftmodem.c
View file @
917b88f5
...
@@ -456,6 +456,8 @@ ldpc_interface_t ldpc_interface = {0}, ldpc_interface_offload = {0};
...
@@ -456,6 +456,8 @@ ldpc_interface_t ldpc_interface = {0}, ldpc_interface_offload = {0};
int
main
(
int
argc
,
char
**
argv
)
int
main
(
int
argc
,
char
**
argv
)
{
{
void
gogo
(
void
);
gogo
();
int
set_exe_prio
=
1
;
int
set_exe_prio
=
1
;
if
(
checkIfFedoraDistribution
())
if
(
checkIfFedoraDistribution
())
if
(
checkIfGenericKernelOnFedora
())
if
(
checkIfGenericKernelOnFedora
())
...
...
openair2/RRC/NR_UE/rrc_UE.c
View file @
917b88f5
...
@@ -2309,6 +2309,21 @@ void handle_t300_expiry(NR_UE_RRC_INST_t *rrc)
...
@@ -2309,6 +2309,21 @@ void handle_t300_expiry(NR_UE_RRC_INST_t *rrc)
// TODO inform upper layers about the failure to establish the RRC connection
// TODO inform upper layers about the failure to establish the RRC connection
}
}
void
*
xx
(
void
*
_
)
{
while
(
1
)
{
getchar
();
NR_UE_RRC_INST_t
*
rrc
=
&
NR_UE_rrc_inst
[
0
];
nr_rrc_initiate_rrcReestablishment
(
rrc
,
NR_ReestablishmentCause_otherFailure
,
0
);
}
}
void
gogo
(
void
)
{
pthread_t
t
;
if
(
pthread_create
(
&
t
,
NULL
,
xx
,
NULL
)
!=
0
)
abort
();
}
//This calls the sidelink preconf message after RRC, MAC instances are created.
//This calls the sidelink preconf message after RRC, MAC instances are created.
void
start_sidelink
(
int
instance
)
void
start_sidelink
(
int
instance
)
{
{
...
...
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