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
8c051201
Commit
8c051201
authored
Jan 26, 2023
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for RA NSA
parent
26e469cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
+4
-6
No files found.
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
View file @
8c051201
...
...
@@ -3836,7 +3836,7 @@ uint8_t get_pusch_mcs_table(long *mcs_Table,
if
(
*
mcs_Table
==
NR_PUSCH_Config__mcs_Table_qam256
)
return
1
;
else
return
(
2
+
(
is_tp
<<
1
));
return
(
2
+
(
is_tp
<<
1
));
}
else
{
if
((
*
mcs_Table
==
NR_PUSCH_Config__mcs_Table_qam256
)
&&
...
...
@@ -3847,14 +3847,12 @@ uint8_t get_pusch_mcs_table(long *mcs_Table,
if
((
*
mcs_Table
==
NR_PUSCH_Config__mcs_Table_qam64LowSE
)
&&
(
target_ss
==
NR_SearchSpace__searchSpaceType_PR_ue_Specific
)
&&
((
rnti_type
==
NR_RNTI_C
)
||
(
rnti_type
==
NR_RNTI_SP_CSI
)))
return
(
2
+
(
is_tp
<<
1
));
return
(
2
+
(
is_tp
<<
1
));
if
(
rnti_type
==
NR_RNTI_MCS_C
)
return
(
2
+
(
is_tp
<<
1
));
AssertFatal
(
1
==
0
,
"Invalid configuration to set MCS table"
);
return
(
2
+
(
is_tp
<<
1
));
}
}
else
return
(
0
+
(
is_tp
*
3
));
return
(
0
+
(
is_tp
*
3
));
}
...
...
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