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
74ae831c
Commit
74ae831c
authored
Jun 20, 2023
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nr sib1: add mandatory fields for FDD
parent
773a35ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
openair2/RRC/NR/nr_rrc_config.c
openair2/RRC/NR/nr_rrc_config.c
+17
-0
No files found.
openair2/RRC/NR/nr_rrc_config.c
View file @
74ae831c
...
@@ -1893,6 +1893,23 @@ NR_BCCH_DL_SCH_Message_t *get_SIB1_NR(const gNB_RrcConfigurationReq *configurati
...
@@ -1893,6 +1893,23 @@ NR_BCCH_DL_SCH_Message_t *get_SIB1_NR(const gNB_RrcConfigurationReq *configurati
asn1cCallocOne
(
UL
->
frequencyInfoUL
.
p_Max
,
*
frequencyInfoUL
->
p_Max
);
asn1cCallocOne
(
UL
->
frequencyInfoUL
.
p_Max
,
*
frequencyInfoUL
->
p_Max
);
frame_type_t
frame_type
=
get_frame_type
((
int
)
*
configuration
->
scc
->
downlinkConfigCommon
->
frequencyInfoDL
->
frequencyBandList
.
list
.
array
[
0
],
*
configuration
->
scc
->
ssbSubcarrierSpacing
);
if
(
frame_type
==
FDD
)
{
UL
->
frequencyInfoUL
.
absoluteFrequencyPointA
=
malloc
(
sizeof
(
*
UL
->
frequencyInfoUL
.
absoluteFrequencyPointA
));
AssertFatal
(
UL
->
frequencyInfoUL
.
absoluteFrequencyPointA
!=
NULL
,
"out of memory
\n
"
);
*
UL
->
frequencyInfoUL
.
absoluteFrequencyPointA
=
*
configuration
->
scc
->
uplinkConfigCommon
->
frequencyInfoUL
->
absoluteFrequencyPointA
;
UL
->
frequencyInfoUL
.
frequencyBandList
=
calloc
(
1
,
sizeof
(
*
UL
->
frequencyInfoUL
.
frequencyBandList
));
AssertFatal
(
UL
->
frequencyInfoUL
.
frequencyBandList
!=
NULL
,
"out of memory
\n
"
);
for
(
int
i
=
0
;
i
<
frequencyInfoUL
->
frequencyBandList
->
list
.
count
;
i
++
)
{
asn1cSequenceAdd
(
UL
->
frequencyInfoUL
.
frequencyBandList
->
list
,
struct
NR_NR_MultiBandInfo
,
nrMultiBandInfo
);
nrMultiBandInfo
->
freqBandIndicatorNR
=
frequencyInfoUL
->
frequencyBandList
->
list
.
array
[
i
];
}
}
UL
->
initialUplinkBWP
.
genericParameters
=
configuration
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
genericParameters
;
UL
->
initialUplinkBWP
.
genericParameters
=
configuration
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
genericParameters
;
UL
->
initialUplinkBWP
.
rach_ConfigCommon
=
configuration
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
;
UL
->
initialUplinkBWP
.
rach_ConfigCommon
=
configuration
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
;
UL
->
initialUplinkBWP
.
pusch_ConfigCommon
=
configuration
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
pusch_ConfigCommon
;
UL
->
initialUplinkBWP
.
pusch_ConfigCommon
=
configuration
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
pusch_ConfigCommon
;
...
...
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