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
eb9ac76f
Commit
eb9ac76f
authored
Sep 24, 2025
by
francescomani
Committed by
Robert Schmidt
Dec 03, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set MCS table also in initial BWP function
parent
ca041936
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
openair2/LAYER2/NR_MAC_gNB/nr_radio_config.c
openair2/LAYER2/NR_MAC_gNB/nr_radio_config.c
+8
-2
No files found.
openair2/LAYER2/NR_MAC_gNB/nr_radio_config.c
View file @
eb9ac76f
...
...
@@ -3325,6 +3325,7 @@ static NR_BWP_UplinkDedicated_t *configure_initial_ul_bwp(const NR_ServingCellCo
static
NR_BWP_DownlinkDedicated_t
*
configure_initial_dl_bwp
(
const
NR_ServingCellConfigCommon_t
*
scc
,
const
int
pdsch_AntennaPorts
,
uint64_t
bitmap
,
const
NR_UE_NR_Capability_t
*
uecap
,
const
nr_mac_config_t
*
configuration
)
{
NR_BWP_DownlinkDedicated_t
*
bwp_Dedicated
=
calloc
(
1
,
sizeof
(
*
bwp_Dedicated
));
...
...
@@ -3356,6 +3357,11 @@ static NR_BWP_DownlinkDedicated_t *configure_initial_dl_bwp(const NR_ServingCell
bwp_Dedicated
->
pdcch_Config
->
choice
.
setup
=
pdcch_Config
;
bwp_Dedicated
->
pdsch_Config
=
config_pdsch
(
bitmap
,
0
,
pdsch_AntennaPorts
,
configuration
->
ptrs
);
// we might call configuration of initial BWP for BWP switch when we already have UE capabilities
set_dl_mcs_table
(
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
genericParameters
.
subcarrierSpacing
,
configuration
->
force_256qam_off
?
NULL
:
uecap
,
bwp_Dedicated
,
scc
);
return
bwp_Dedicated
;
}
...
...
@@ -3537,7 +3543,7 @@ static NR_SpCellConfig_t *get_initial_SpCellConfig(int uid,
asn1cCallocOne
(
uplinkConfig
->
firstActiveUplinkBWP_Id
,
first_active_bwp
);
if
(
first_active_bwp
==
0
)
{
uplinkConfig
->
initialUplinkBWP
=
configure_initial_ul_bwp
(
scc
,
configuration
,
maxMIMO_Layers
,
NULL
,
uid
);
configDedicated
->
initialDownlinkBWP
=
configure_initial_dl_bwp
(
scc
,
pdsch_AntennaPorts
,
bitmap
,
configuration
);
configDedicated
->
initialDownlinkBWP
=
configure_initial_dl_bwp
(
scc
,
pdsch_AntennaPorts
,
bitmap
,
NULL
,
configuration
);
}
else
{
configDedicated
->
downlinkBWP_ToAddModList
=
calloc
(
1
,
sizeof
(
*
configDedicated
->
downlinkBWP_ToAddModList
));
NR_BWP_Downlink_t
*
bwp
=
config_downlinkBWP
(
scc
,
...
...
@@ -3819,7 +3825,7 @@ NR_CellGroupConfig_t * update_cellGroupConfig_for_BWP_switch(NR_CellGroupConfig_
if
(
!
uplinkConfig
->
initialUplinkBWP
)
uplinkConfig
->
initialUplinkBWP
=
calloc_or_fail
(
1
,
sizeof
(
*
uplinkConfig
->
initialUplinkBWP
));
uplinkConfig
->
initialUplinkBWP
=
configure_initial_ul_bwp
(
scc
,
configuration
,
ul_maxMIMO_Layers
,
uecap
,
uid
);
configDedicated
->
initialDownlinkBWP
=
configure_initial_dl_bwp
(
scc
,
pdsch_AntennaPorts
,
bitmap
,
configuration
);
configDedicated
->
initialDownlinkBWP
=
configure_initial_dl_bwp
(
scc
,
pdsch_AntennaPorts
,
bitmap
,
uecap
,
configuration
);
}
else
{
if
(
!
configDedicated
->
downlinkBWP_ToAddModList
)
configDedicated
->
downlinkBWP_ToAddModList
=
calloc_or_fail
(
1
,
sizeof
(
*
configDedicated
->
downlinkBWP_ToAddModList
));
...
...
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