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
littleBu
OpenXG-RAN
Commits
d718e677
Commit
d718e677
authored
Jan 06, 2025
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
automatic determination of DCI mask size at the UE
parent
f9bff3d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+2
-2
No files found.
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
d718e677
...
...
@@ -3011,10 +3011,10 @@ void nr_ue_send_sdu(NR_UE_MAC_INST_t *mac, nr_downlink_indication_t *dl_info, in
// Fixme: Intel Endianess only procedure
static
inline
int
readBits
(
const
uint8_t
*
dci
,
int
*
start
,
int
length
)
{
const
int
mask
[]
=
{
0
,
1
,
3
,
7
,
0xf
,
0x1f
,
0x3f
,
0x7f
,
0xff
,
0x1ff
,
0x3ff
,
0x7ff
,
0xfff
,
0x1fff
,
0x3fff
,
0x7fff
,
0xffff
}
;
uint32_t
mask
=
(
1U
<<
length
)
-
1
;
uint64_t
*
tmp
=
(
uint64_t
*
)
dci
;
*
start
-=
length
;
return
*
tmp
>>
*
start
&
mask
[
length
]
;
return
*
tmp
>>
*
start
&
mask
;
}
static
void
extract_10_ra_rnti
(
dci_pdu_rel15_t
*
dci_pdu_rel15
,
const
uint8_t
*
dci_pdu
,
int
pos
,
const
int
N_RB
)
...
...
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