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
d791d03e
Commit
d791d03e
authored
Sep 16, 2024
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix to have correct maxMIMO_layers in dlsim computing tbslbrm
parent
0053a3d0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
openair1/SIMULATION/NR_PHY/dlsim.c
openair1/SIMULATION/NR_PHY/dlsim.c
+1
-0
openair2/RRC/NR/nr_rrc_config.c
openair2/RRC/NR/nr_rrc_config.c
+3
-2
No files found.
openair1/SIMULATION/NR_PHY/dlsim.c
View file @
d791d03e
...
...
@@ -658,6 +658,7 @@ int main(int argc, char **argv)
.
minRXTXTIME
=
6
,
.
do_CSIRS
=
0
,
.
do_SRS
=
0
,
.
maxMIMO_layers
=
g_nrOfLayers
,
.
force_256qam_off
=
false
,
.
timer_config
.
sr_ProhibitTimer
=
0
,
.
timer_config
.
sr_TransMax
=
64
,
...
...
openair2/RRC/NR/nr_rrc_config.c
View file @
d791d03e
...
...
@@ -566,9 +566,8 @@ static void config_csiim(int do_csirs,
void
set_dl_maxmimolayers
(
NR_PDSCH_ServingCellConfig_t
*
pdsch_servingcellconfig
,
const
NR_ServingCellConfigCommon_t
*
scc
,
const
NR_UE_NR_Capability_t
*
uecap
,
int
maxMIMO_layers
)
int
maxMIMO_layers
)
{
if
(
!
pdsch_servingcellconfig
->
ext1
)
pdsch_servingcellconfig
->
ext1
=
calloc
(
1
,
sizeof
(
*
pdsch_servingcellconfig
->
ext1
));
if
(
!
pdsch_servingcellconfig
->
ext1
->
maxMIMO_Layers
)
...
...
@@ -871,6 +870,8 @@ void prepare_sim_uecap(NR_UE_NR_Capability_t *cap,
fs_cc
->
supportedBandwidthDL
.
present
=
NR_SupportedBandwidth_PR_fr1
;
fs_cc
->
supportedBandwidthDL
.
choice
.
fr1
=
bw
;
}
fs_cc
->
maxNumberMIMO_LayersPDSCH
=
calloc
(
1
,
sizeof
(
*
fs_cc
->
maxNumberMIMO_LayersPDSCH
));
*
fs_cc
->
maxNumberMIMO_LayersPDSCH
=
NR_MIMO_LayersDL_fourLayers
;
fs_cc
->
supportedModulationOrderDL
=
calloc
(
1
,
sizeof
(
*
fs_cc
->
supportedModulationOrderDL
));
*
fs_cc
->
supportedModulationOrderDL
=
NR_ModulationOrder_qam256
;
asn1cSeqAdd
(
&
fs
->
featureSetsDownlinkPerCC
->
list
,
fs_cc
);
...
...
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