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
alex037yang
OpenXG-RAN
Commits
1e857d5b
Commit
1e857d5b
authored
Aug 04, 2017
by
Anta Huang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the naming of cell config parameters
parent
863e9404
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
15 deletions
+15
-15
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
+5
-5
openair2/ENB_APP/flexran_agent_common.c
openair2/ENB_APP/flexran_agent_common.c
+10
-10
No files found.
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
View file @
1e857d5b
...
...
@@ -38,11 +38,11 @@ message flex_cell_config {
optional
uint32
srs_mac_up_pts
=
32
;
// Boolean value. See TS 36.211, section 5.5.3.2. TDD only
optional
uint32
enable_64QAM
=
33
;
// One of the FLEQ_* enum values
optional
uint32
carrier_index
=
34
;
// Carrier component index
optional
uint32
op_
dl_freq
=
35
;
// operating downlink frequency
optional
uint32
op_
ul_freq
=
36
;
// operating uplink frequency
optional
uint32
op_
eutra_band
=
37
;
// operating band
optional
int32
op_
dl_pdsch_power
=
38
;
// operating downlink power
optional
int32
op_
ul_pusch_power
=
39
;
// operating uplink power
optional
uint32
dl_freq
=
35
;
// operating downlink frequency
optional
uint32
ul_freq
=
36
;
// operating uplink frequency
optional
uint32
eutra_band
=
37
;
// operating band
optional
int32
dl_pdsch_power
=
38
;
// operating downlink power
optional
int32
ul_pusch_power
=
39
;
// operating uplink power
}
message
flex_ue_config
{
...
...
openair2/ENB_APP/flexran_agent_common.c
View file @
1e857d5b
...
...
@@ -1013,20 +1013,20 @@ int flexran_agent_enb_config_reply(mid_t mod_id, const void *params, Protocol__F
cell_conf
[
i
]
->
srs_mac_up_pts
=
flexran_get_srs_MaxUpPts
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_srs_mac_up_pts
=
1
;
cell_conf
[
i
]
->
op_
dl_freq
=
flexran_agent_get_operating_dl_freq
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_
op_
dl_freq
=
1
;
cell_conf
[
i
]
->
dl_freq
=
flexran_agent_get_operating_dl_freq
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_dl_freq
=
1
;
cell_conf
[
i
]
->
op_
ul_freq
=
flexran_agent_get_operating_ul_freq
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_
op_
ul_freq
=
1
;
cell_conf
[
i
]
->
ul_freq
=
flexran_agent_get_operating_ul_freq
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_ul_freq
=
1
;
cell_conf
[
i
]
->
op_
eutra_band
=
flexran_agent_get_operating_eutra_band
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_
op_
eutra_band
=
1
;
cell_conf
[
i
]
->
eutra_band
=
flexran_agent_get_operating_eutra_band
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_eutra_band
=
1
;
cell_conf
[
i
]
->
op_
dl_pdsch_power
=
flexran_agent_get_operating_pdsch_refpower
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_
op_
dl_pdsch_power
=
1
;
cell_conf
[
i
]
->
dl_pdsch_power
=
flexran_agent_get_operating_pdsch_refpower
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_dl_pdsch_power
=
1
;
cell_conf
[
i
]
->
op_
ul_pusch_power
=
flexran_agent_get_operating_pusch_p0
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_
op_
ul_pusch_power
=
1
;
cell_conf
[
i
]
->
ul_pusch_power
=
flexran_agent_get_operating_pusch_p0
(
enb_id
,
i
);
cell_conf
[
i
]
->
has_ul_pusch_power
=
1
;
if
(
flexran_get_enable64QAM
(
enb_id
,
i
)
==
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