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
lizhongxiao
OpenXG-RAN
Commits
0fb0a9a4
Commit
0fb0a9a4
authored
Feb 09, 2024
by
Raymond Knopp
Committed by
Robert Schmidt
Feb 09, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
O-RAN 7.2: Set PRACH filter index correctly for FR2
parent
8dd12ba2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
radio/fhi_72/oran-config.c
radio/fhi_72/oran-config.c
+4
-4
No files found.
radio/fhi_72/oran-config.c
View file @
0fb0a9a4
...
@@ -684,9 +684,6 @@ static bool set_fh_prach_config(const openair0_config_t *oai0,
...
@@ -684,9 +684,6 @@ static bool set_fh_prach_config(const openair0_config_t *oai0,
{
{
const
split7_config_t
*
s7cfg
=
&
oai0
->
split7
;
const
split7_config_t
*
s7cfg
=
&
oai0
->
split7
;
// for FR2, need at least to update nPrachFilterIdx
AssertFatal
(
oai0
->
nr_band
<
100
,
"can only handle FR1!
\n
"
);
prach_config
->
nPrachConfIdx
=
s7cfg
->
prach_index
;
prach_config
->
nPrachConfIdx
=
s7cfg
->
prach_index
;
prach_config
->
nPrachSubcSpacing
=
oai0
->
nr_scs_for_raster
;
prach_config
->
nPrachSubcSpacing
=
oai0
->
nr_scs_for_raster
;
prach_config
->
nPrachZeroCorrConf
=
0
;
prach_config
->
nPrachZeroCorrConf
=
0
;
...
@@ -694,7 +691,10 @@ static bool set_fh_prach_config(const openair0_config_t *oai0,
...
@@ -694,7 +691,10 @@ static bool set_fh_prach_config(const openair0_config_t *oai0,
prach_config
->
nPrachRootSeqIdx
=
0
;
prach_config
->
nPrachRootSeqIdx
=
0
;
prach_config
->
nPrachFreqStart
=
s7cfg
->
prach_freq_start
;
prach_config
->
nPrachFreqStart
=
s7cfg
->
prach_freq_start
;
prach_config
->
nPrachFreqOffset
=
(
s7cfg
->
prach_freq_start
*
12
-
oai0
->
num_rb_dl
*
6
)
*
2
;
prach_config
->
nPrachFreqOffset
=
(
s7cfg
->
prach_freq_start
*
12
-
oai0
->
num_rb_dl
*
6
)
*
2
;
if
(
oai0
->
nr_band
<
100
)
prach_config
->
nPrachFilterIdx
=
get_prach_filterindex_fr1
(
oai0
->
duplex_mode
,
s7cfg
->
prach_index
);
prach_config
->
nPrachFilterIdx
=
get_prach_filterindex_fr1
(
oai0
->
duplex_mode
,
s7cfg
->
prach_index
);
else
prach_config
->
nPrachFilterIdx
=
XRAN_FILTERINDEX_PRACH_ABC
;
prach_config
->
startSymId
=
0
;
prach_config
->
startSymId
=
0
;
prach_config
->
lastSymId
=
0
;
prach_config
->
lastSymId
=
0
;
prach_config
->
startPrbc
=
0
;
prach_config
->
startPrbc
=
0
;
...
...
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