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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
Michael Black
OpenXG-RAN
Commits
df2d3459
Commit
df2d3459
authored
Feb 19, 2021
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set first random value to be UE number
Also added logs for debugging this rare random value issue.
parent
eec846a5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
openair2/PHY_INTERFACE/phy_stub_UE.c
openair2/PHY_INTERFACE/phy_stub_UE.c
+1
-2
openair2/RRC/LTE/rrc_UE.c
openair2/RRC/LTE/rrc_UE.c
+2
-1
No files found.
openair2/PHY_INTERFACE/phy_stub_UE.c
View file @
df2d3459
...
...
@@ -1113,7 +1113,7 @@ int memcpy_hi_dci0_req (L1_rxtx_proc_t *proc,
if
(
!
is_my_hi_dci0_req
(
req
))
{
LOG_
W
(
MAC
,
"Filtering hi_dci0_req
\n
"
);
LOG_
I
(
MAC
,
"Filtering hi_dci0_req
\n
"
);
return
0
;
}
nfapi_hi_dci0_request_t
*
p
=
(
nfapi_hi_dci0_request_t
*
)
malloc
(
sizeof
(
nfapi_hi_dci0_request_t
));
...
...
@@ -1309,7 +1309,6 @@ void *ue_standalone_pnf_task(void *context)
}
else
if
(
len
==
sizeof
(
channel_info
))
{
LOG_I
(
MAC
,
"Entered Channel Info Loop"
);
channel_info
*
ch_info
=
malloc
(
sizeof
(
channel_info
));
memcpy
(
ch_info
,
buffer
,
sizeof
(
channel_info
));
...
...
openair2/RRC/LTE/rrc_UE.c
View file @
df2d3459
...
...
@@ -410,7 +410,8 @@ void rrc_ue_generate_RRCConnectionRequest( const protocol_ctxt_t *const ctxt_pP,
#endif
LOG_T
(
RRC
,
"%x."
,
rv
[
i
]);
}
LOG_I
(
RRC
,
"%s: random = %02X %02X %02X %02X %02X %02X
\n
"
,
rv
[
0
]
=
ctxt_pP
->
module_id
;
// Debugging duplicate random values
LOG_A
(
RRC
,
"%s: random = %02X %02X %02X %02X %02X %02X
\n
"
,
__func__
,
rv
[
0
],
rv
[
1
],
...
...
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