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
e775b9ce
Commit
e775b9ce
authored
Mar 20, 2025
by
Sakthivel Velumani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix RA-RNTI for long prach formats
parent
bab16b7e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
+5
-2
No files found.
openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
View file @
e775b9ce
...
...
@@ -624,9 +624,12 @@ static void ra_preamble_msga_transmission(RA_config_t *ra, int scs)
prach_resources
->
ra_preamble_rx_target_power
=
get_ra_preamble_rx_target_power
(
ra
,
scs
);
ra
->
ra_rnti
=
nr_get_ra_rnti
(
ra
->
sched_ro_info
.
start_symbol
,
ra
->
sched_ro_info
.
slot
,
ra
->
sched_ro_info
.
fdm
,
0
);
// 3GPP TS 38.321 Section 5.1.3 says t_id for RA-RNTI depends on mu as specified in clause 5.3.2 in TS 38.211
// so mu = 0 for prach format < 4.
const
int
slot
=
((
ra
->
sched_ro_info
.
format
&
0xff
)
<
4
)
?
ra
->
sched_ro_info
.
slot
>>
scs
:
ra
->
sched_ro_info
.
slot
;
ra
->
ra_rnti
=
nr_get_ra_rnti
(
ra
->
sched_ro_info
.
start_symbol
,
slot
,
ra
->
sched_ro_info
.
fdm
,
0
);
if
(
ra
->
ra_type
==
RA_2_STEP
)
ra
->
MsgB_rnti
=
nr_get_MsgB_rnti
(
ra
->
sched_ro_info
.
start_symbol
,
ra
->
sched_ro_info
.
slot
,
ra
->
sched_ro_info
.
fdm
,
0
);
ra
->
MsgB_rnti
=
nr_get_MsgB_rnti
(
ra
->
sched_ro_info
.
start_symbol
,
slot
,
ra
->
sched_ro_info
.
fdm
,
0
);
}
// 38.321 Section 5.1.2 Random Access Resource selection
...
...
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