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
Michael Black
OpenXG-RAN
Commits
7d782a4a
Commit
7d782a4a
authored
Jan 13, 2018
by
Xu Bo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix n1_pucch issue:50RB/100RB prach_freq_offset 2 ->3
parent
f6911c93
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
openair2/ENB_APP/enb_config.c
openair2/ENB_APP/enb_config.c
+11
-2
No files found.
openair2/ENB_APP/enb_config.c
View file @
7d782a4a
...
@@ -828,12 +828,21 @@ int RCconfig_RRC(MessageDef *msg_p, uint32_t i, eNB_RRC_INST *rrc) {
...
@@ -828,12 +828,21 @@ int RCconfig_RRC(MessageDef *msg_p, uint32_t i, eNB_RRC_INST *rrc) {
RC
.
config_file_name
,
i
,
prach_zero_correlation
);
RC
.
config_file_name
,
i
,
prach_zero_correlation
);
RRC_CONFIGURATION_REQ
(
msg_p
).
prach_freq_offset
[
j
]
=
prach_freq_offset
;
RRC_CONFIGURATION_REQ
(
msg_p
).
prach_freq_offset
[
j
]
=
prach_freq_offset
;
#ifndef UE_EXPANSION
if
((
prach_freq_offset
<
0
)
||
(
prach_freq_offset
>
94
))
if
((
prach_freq_offset
<
0
)
||
(
prach_freq_offset
>
94
))
AssertFatal
(
0
,
AssertFatal
(
0
,
"Failed to parse eNB configuration file %s, enb %d unknown value
\"
%d
\"
for prach_freq_offset choice: 0..94!
\n
"
,
"Failed to parse eNB configuration file %s, enb %d unknown value
\"
%d
\"
for prach_freq_offset choice: 0..94!
\n
"
,
RC
.
config_file_name
,
i
,
prach_freq_offset
);
RC
.
config_file_name
,
i
,
prach_freq_offset
);
#else
if
((
N_RB_DL
==
25
)
&&
(
prach_freq_offset
!=
2
))
AssertFatal
(
0
,
"Failed to parse eNB configuration file %s, enb %d unknown value
\"
%d
\"
for prach_freq_offset choice: 2(N_RB_DL %d)!
\n
"
,
RC
.
config_file_name
,
i
,
prach_freq_offset
,
N_RB_DL
);
if
(((
N_RB_DL
==
50
)
||
(
N_RB_DL
==
100
))
&&
(
prach_freq_offset
!=
3
))
AssertFatal
(
0
,
"Failed to parse eNB configuration file %s, enb %d unknown value
\"
%d
\"
for prach_freq_offset choice: 3(N_RB_DL %d)!
\n
"
,
RC
.
config_file_name
,
i
,
prach_freq_offset
,
N_RB_DL
);
#endif
RRC_CONFIGURATION_REQ
(
msg_p
).
pucch_delta_shift
[
j
]
=
pucch_delta_shift
-
1
;
RRC_CONFIGURATION_REQ
(
msg_p
).
pucch_delta_shift
[
j
]
=
pucch_delta_shift
-
1
;
...
...
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