Home
last modified time | relevance | path

Searched refs:bts (Results 1 – 10 of 10) sorted by relevance

/tools/test/connectivity/acts/framework/acts/controllers/rohdeschwarz_lib/
Dcmw500_cellular_simulator.py196 self.bts = None
208 self.bts = [self.cmw.get_base_station()]
235 bts = self.bts[bts_index]
236 bts.duplex_mode = self.get_duplex_mode(band)
238 bts.band = band
262 bts = self.bts[bts_index]
267 bts.uplink_power_control = input_power
268 bts.tpc_power_control = cmw500.TpcPowerControl.CLOSED_LOOP
269 bts.tpc_closed_loop_target_power = input_power
278 bts = self.bts[bts_index]
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/anritsu_lib/
Dmd8475_cellular_simulator.py71 self.bts = None
91 self.bts = [self.anritsu.get_BTS(md8475a.BtsNumber.BTS1)]
105 self.bts = [
117 nrb_ul = int(self.bts[bts_index].nrb_ul)
118 max_nrb_ul = self.bts[bts_index].max_nrb_ul
126 self.bts[bts_index].input_level = input_level
135 self.bts[bts_index].output_level = output_power
147 self.bts[bts_index].dl_channel = str(channel_number + 1)
149 self.bts[bts_index].dl_channel = str(channel_number)
158 self.bts[bts_index].dl_cc_enabled = enabled
[all …]
Dmd8475a.py1026 bts=1, argument
1042 registration_check_iterations = 2 if sim_model[bts - 1] == "GSM" else 1
1047 "CALLSTAT? BTS{}".format(bts)).split(",")
1519 bts, rat = self.get_camping_cell()
/tools/test/connectivity/acts/tests/google/coex/hotspot_tests/
DHotspotWiFiChannelTest.py62 self.bts = self.cmw.get_base_station()
130 test_params['LTE_ul_freq'] = self.bts.ul_frequency
131 test_params['LTE_dl_freq'] = self.bts.dl_frequency
154 self.bts.duplex_mode = cmw500.DuplexMode.TDD
161 self.bts.downlink_power_level = '-59.8'
163 self.bts.band = band
164 self.bts.bandwidth = cmw500.LteBandwidth.BANDWIDTH_5MHz
165 self.bts.dl_channel = channel
168 'dl_channel: {}, '.format(self.bts.band,
169 self.bts.bandwidth,
[all …]
/tools/test/connectivity/acts/framework/acts/test_utils/power/tel_simulations/
DUmtsSimulation.py209 def set_release_version(self, bts, release_version): argument
247 bts.packet_rate = self.packet_rate
277 def set_downlink_rx_power(self, bts, signal_level): argument
289 super().set_downlink_rx_power(bts, signal_level)
294 def set_band(self, bts, band): argument
302 bts.band = band
DLteCaSimulation.py96 self.bts = [
102 self.bts.extend([
241 self.bts[0].mimo_support = LteMimoMode.MIMO_4X4
242 self.bts[1].mimo_support = LteMimoMode.MIMO_4X4
247 self.bts[0].mimo_support = LteMimoMode.MIMO_4X4
249 self.bts[1].mimo_support = LteMimoMode.MIMO_4X4
251 self.bts[1].mimo_support = LteMimoMode.MIMO_2X2
252 self.bts[2].mimo_support = LteMimoMode.MIMO_2X2
DGsmSimulation.py154 def set_band(self, bts, band): argument
162 bts.band = band
/tools/test/connectivity/acts/tests/google/tel/lab/
DTelLabNeighborCellTest.py223 def _setup_lte_serving_cell(self, bts, dl_power, cell_id, physical_cellid): argument
224 bts.output_level = dl_power
225 bts.bandwidth = BtsBandwidth.LTE_BANDWIDTH_10MHz
226 bts.packet_rate = BtsPacketRate.LTE_MANUAL
227 bts.lte_mcs_dl = self._LTE_MCS_DL
228 bts.lte_mcs_ul = self._LTE_MCS_UL
229 bts.nrb_dl = self._NRB_DL
230 bts.nrb_ul = self._NRB_UL
231 bts.cell_id = cell_id
232 bts.physical_cellid = physical_cellid
[all …]
DTelLabMobilityTest.py133 bts = set_simulation_func(self.anritsu, self.user_params,
181 current_lte_band = bts[0].band
191 bts[1].band = band[1][i % len(band[1])]
224 bts[0].band = band[0][i % len(band[0])]
/tools/test/connectivity/acts/framework/acts/test_utils/tel/
Danritsu_utils.py364 def _init_lte_bts(bts, user_params, cell_no, sim_card): argument
377 bts.nw_fullname_enable = BtsNwNameEnable.NAME_ENABLE
378 bts.nw_fullname = TEST_PLMN_LTE_NAME
379 bts.mcc = get_lte_mcc(user_params, cell_no, sim_card)
380 bts.mnc = get_lte_mnc(user_params, cell_no, sim_card)
381 bts.band = get_lte_band(user_params, cell_no, sim_card)
382 bts.transmode = get_transmission_mode(user_params, cell_no)
383 bts.dl_antenna = get_dl_antenna(user_params, cell_no)
384 bts.output_level = DEFAULT_OUTPUT_LEVEL
385 bts.input_level = DEFAULT_INPUT_LEVEL
[all …]