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
0536c584
Commit
0536c584
authored
Jun 08, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/NR_SA_FR2_fix_mux_pattern' into integration_2023_w23
parents
f2bdb6bb
ab21acfe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
+7
-7
No files found.
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
View file @
0536c584
...
...
@@ -4225,11 +4225,11 @@ void get_type0_PDCCH_CSS_config_parameters(NR_Type0_PDCCH_CSS_config_t *type0_PD
case
(
NR_SubcarrierSpacing_kHz120
<<
3
)
|
NR_SubcarrierSpacing_kHz60
:
AssertFatal
(
index_4msb
<
12
,
"38.213 Table 13-7 4 MSB out of range
\n
"
);
if
(
index_4msb
&
0x7
)
{
if
(
index_4msb
<
8
)
{
type0_PDCCH_CSS_config
->
type0_pdcch_ss_mux_pattern
=
1
;
}
else
if
(
index_4msb
&
0x18
)
{
}
else
if
(
index_4msb
<
12
)
{
type0_PDCCH_CSS_config
->
type0_pdcch_ss_mux_pattern
=
2
;
}
else
{
;
}
}
type0_PDCCH_CSS_config
->
num_rbs
=
table_38213_13_7_c2
[
index_4msb
];
type0_PDCCH_CSS_config
->
num_symbols
=
table_38213_13_7_c3
[
index_4msb
];
...
...
@@ -4242,9 +4242,9 @@ void get_type0_PDCCH_CSS_config_parameters(NR_Type0_PDCCH_CSS_config_t *type0_PD
case
(
NR_SubcarrierSpacing_kHz120
<<
3
)
|
NR_SubcarrierSpacing_kHz120
:
AssertFatal
(
index_4msb
<
8
,
"38.213 Table 13-8 4 MSB out of range
\n
"
);
if
(
index_4msb
&
0x3
)
{
if
(
index_4msb
<
4
)
{
type0_PDCCH_CSS_config
->
type0_pdcch_ss_mux_pattern
=
1
;
}
else
if
(
index_4msb
&
0x0c
)
{
}
else
if
(
index_4msb
<
8
)
{
type0_PDCCH_CSS_config
->
type0_pdcch_ss_mux_pattern
=
3
;
}
...
...
@@ -4267,9 +4267,9 @@ void get_type0_PDCCH_CSS_config_parameters(NR_Type0_PDCCH_CSS_config_t *type0_PD
case
(
NR_SubcarrierSpacing_kHz240
<<
3
)
|
NR_SubcarrierSpacing_kHz120
:
AssertFatal
(
index_4msb
<
8
,
"38.213 Table 13-10 4 MSB out of range
\n
"
);
if
(
index_4msb
&
0x3
)
{
if
(
index_4msb
<
4
)
{
type0_PDCCH_CSS_config
->
type0_pdcch_ss_mux_pattern
=
1
;
}
else
if
(
index_4msb
&
0x0c
)
{
}
else
if
(
index_4msb
<
8
)
{
type0_PDCCH_CSS_config
->
type0_pdcch_ss_mux_pattern
=
2
;
}
type0_PDCCH_CSS_config
->
num_rbs
=
table_38213_13_10_c2
[
index_4msb
];
...
...
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