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
spbro
OpenXG-RAN
Commits
056a7fdb
Commit
056a7fdb
authored
Aug 07, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/NR_UE_pdcch_unscrambling_fix' into integration_2023_w31
parents
a2fbc2d6
7479597a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
openair1/PHY/NR_UE_TRANSPORT/dci_nr.c
openair1/PHY/NR_UE_TRANSPORT/dci_nr.c
+3
-2
No files found.
openair1/PHY/NR_UE_TRANSPORT/dci_nr.c
View file @
056a7fdb
...
...
@@ -800,7 +800,8 @@ void nr_pdcch_unscrambling(int16_t *e_rx,
uint16_t
scrambling_RNTI
,
uint32_t
length
,
uint16_t
pdcch_DMRS_scrambling_id
,
int16_t
*
z2
)
{
int16_t
*
z2
)
{
int
i
;
uint8_t
reset
;
uint32_t
x1
=
0
,
x2
=
0
,
s
=
0
;
...
...
@@ -809,7 +810,7 @@ void nr_pdcch_unscrambling(int16_t *e_rx,
reset
=
1
;
// x1 is set in first call to lte_gold_generic
n_id
=
pdcch_DMRS_scrambling_id
;
x2
=
((
rnti
<<
16
)
+
n_id
);
//mod 2^31 is implicit //
this is c_init in 38.211 v15.1.0 Section 7.3.2.3
x2
=
((
rnti
<<
16
)
+
n_id
)
%
(
1U
<<
31
);
//
this is c_init in 38.211 v15.1.0 Section 7.3.2.3
LOG_D
(
PHY
,
"PDCCH Unscrambling x2 %x : scrambling_RNTI %x
\n
"
,
x2
,
rnti
);
...
...
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