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
6302169d
Commit
6302169d
authored
1 year ago
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't configure rach occasions for bwp without rach config
parent
fb166fb1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
openair2/LAYER2/NR_MAC_UE/config_ue.c
openair2/LAYER2/NR_MAC_UE/config_ue.c
+4
-2
No files found.
openair2/LAYER2/NR_MAC_UE/config_ue.c
View file @
6302169d
...
...
@@ -1913,7 +1913,7 @@ static void configure_BWPs(NR_UE_MAC_INST_t *mac, NR_ServingCellConfig_t *scd)
}
if
(
scd
->
uplinkConfig
->
firstActiveUplinkBWP_Id
)
{
mac
->
current_UL_BWP
=
get_ul_bwp_structure
(
mac
,
*
scd
->
uplinkConfig
->
firstActiveUplinkBWP_Id
,
false
);
AssertFatal
(
mac
->
current_UL_BWP
,
"Couldn't find
D
L-BWP %ld
\n
"
,
*
scd
->
uplinkConfig
->
firstActiveUplinkBWP_Id
);
AssertFatal
(
mac
->
current_UL_BWP
,
"Couldn't find
U
L-BWP %ld
\n
"
,
*
scd
->
uplinkConfig
->
firstActiveUplinkBWP_Id
);
}
}
}
...
...
@@ -1947,7 +1947,9 @@ void nr_rrc_mac_config_req_cg(module_id_t module_id,
}
// Setup the SSB to Rach Occasions mapping according to the config
build_ssb_to_ro_map
(
mac
);
// Only if RACH is configured for current BWP
if
(
mac
->
current_UL_BWP
->
rach_ConfigCommon
)
build_ssb_to_ro_map
(
mac
);
if
(
!
mac
->
dl_config_request
||
!
mac
->
ul_config_request
)
ue_init_config_request
(
mac
,
mac
->
current_DL_BWP
->
scs
);
...
...
This diff is collapsed.
Click to expand it.
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