Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
1e857d5b
Commit
1e857d5b
authored
Aug 04, 2017
by
Anta Huang
Browse files
Update the naming of cell config parameters
parent
863e9404
Changes
2
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
0%
Try again
or
attach a new 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