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
a343ec03
Commit
a343ec03
authored
Oct 10, 2024
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changes in get_transformPrecoding to follow what's written in 6.1.3 of 214
parent
a6f03b3f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
+6
-5
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
+1
-1
No files found.
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
View file @
a343ec03
...
...
@@ -2658,16 +2658,17 @@ long get_transformPrecoding(const NR_UE_UL_BWP_t *current_UL_BWP, nr_dci_format_
&&
current_UL_BWP
->
configuredGrantConfig
->
transformPrecoder
)
return
*
current_UL_BWP
->
configuredGrantConfig
->
transformPrecoder
;
if
(
dci_format
==
NR_UL_DCI_FORMAT_0_1
long
msg3_tp
=
NR_PUSCH_Config__transformPrecoder_disabled
;
if
(
current_UL_BWP
&&
current_UL_BWP
->
rach_ConfigCommon
&&
current_UL_BWP
->
rach_ConfigCommon
->
msg3_transformPrecoder
)
msg3_tp
=
NR_PUSCH_Config__transformPrecoder_enabled
;
if
(
dci_format
!=
NR_UL_DCI_FORMAT_0_0
&&
current_UL_BWP
&&
current_UL_BWP
->
pusch_Config
&&
current_UL_BWP
->
pusch_Config
->
transformPrecoder
)
return
*
current_UL_BWP
->
pusch_Config
->
transformPrecoder
;
if
(
current_UL_BWP
&&
current_UL_BWP
->
rach_ConfigCommon
&&
current_UL_BWP
->
rach_ConfigCommon
->
msg3_transformPrecoder
)
return
NR_PUSCH_Config__transformPrecoder_enabled
;
return
NR_PUSCH_Config__transformPrecoder_disabled
;
return
msg3_tp
;
}
uint8_t
get_pusch_nb_antenna_ports
(
NR_PUSCH_Config_t
*
pusch_Config
,
...
...
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
View file @
a343ec03
...
...
@@ -779,7 +779,7 @@ int nr_config_pusch_pdu(NR_UE_MAC_INST_t *mac,
uint32_t
n_RS_Id
=
0
;
if
(
NR_DMRS_ulconfig
->
transformPrecodingEnabled
&&
NR_DMRS_ulconfig
->
transformPrecodingEnabled
->
nPUSCH_Identity
!=
NULL
)
NR_DMRS_ulconfig
->
transformPrecodingEnabled
->
nPUSCH_Identity
)
n_RS_Id
=
*
NR_DMRS_ulconfig
->
transformPrecodingEnabled
->
nPUSCH_Identity
;
else
n_RS_Id
=
mac
->
physCellId
;
...
...
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