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
zzha zzha
OpenXG-RAN
Commits
6b69e67f
Commit
6b69e67f
authored
Feb 16, 2022
by
luis_pereira87
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix number of search spaces
parent
405edc8b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_constants.h
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_constants.h
+2
-1
openair2/LAYER2/NR_MAC_UE/config_ue.c
openair2/LAYER2/NR_MAC_UE/config_ue.c
+1
-1
No files found.
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_constants.h
View file @
6b69e67f
...
...
@@ -10,7 +10,8 @@
#define FAPI_NR_MAX_RA_OCCASION_PER_CSIRS 64
// Constants Defined in 38.213
#define FAPI_NR_MAX_CORESET_PER_BWP 3
#define FAPI_NR_MAX_SS 10
#define FAPI_NR_MAX_SS_PER_BWP 10
#define FAPI_NR_MAX_SS FAPI_NR_MAX_SS_PER_BWP*NR_MAX_NUM_BWP
/// RX_IND
...
...
openair2/LAYER2/NR_MAC_UE/config_ue.c
View file @
6b69e67f
...
...
@@ -575,7 +575,7 @@ void configure_ss_coreset(NR_UE_MAC_INST_t *mac,
struct
NR_PDCCH_Config__searchSpacesToAddModList
*
searchSpacesToAddModList
=
pdcch_Config
->
choice
.
setup
->
searchSpacesToAddModList
;
AssertFatal
(
searchSpacesToAddModList
!=
NULL
,
"searchSpacesToAddModList is null
\n
"
);
AssertFatal
(
searchSpacesToAddModList
->
list
.
count
>
0
,
"list of UE specifically configured Search Spaces is empty
\n
"
);
AssertFatal
(
searchSpacesToAddModList
->
list
.
count
<
FAPI_NR_MAX_SS
,
"too many searchpaces per coreset %d
\n
"
,
searchSpacesToAddModList
->
list
.
count
);
AssertFatal
(
searchSpacesToAddModList
->
list
.
count
<
FAPI_NR_MAX_SS
_PER_BWP
,
"too many searchpaces per coreset %d
\n
"
,
searchSpacesToAddModList
->
list
.
count
);
// check available Search Spaces in the searchSpacesToAddModList and pass to MAC
// note: the network configures at most 10 Search Spaces per BWP per cell (including UE-specific and common Search Spaces).
...
...
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