blob: 012ce522d265e3493fe2023018cea703ffa2bb2c [file] [log] [blame]
Pau Espin Pedrol3bf1e132018-05-08 15:59:26 +02001#!/usr/bin/env python3
2from osmo_gsm_tester.testenv import *
3
4add_subdir_to_import_path("lib")
5from testlib import call_test_setup_run
6
7def my_bts_setup(bts):
8 bts.set_num_trx(1)
9 bts.set_trx_phy_channel(0, 0, 'CCCH+SDCCH4')
10 bts.set_trx_phy_channel(0, 1, 'SDCCH8')
11 bts.set_trx_phy_channel(0, 2, 'TCH/F')
12 bts.set_trx_phy_channel(0, 3, 'TCH/F')
13 bts.set_trx_phy_channel(0, 4, 'TCH/F')
14 bts.set_trx_phy_channel(0, 5, 'TCH/F')
15 bts.set_trx_phy_channel(0, 6, 'TCH/F')
16 bts.set_trx_phy_channel(0, 7, 'TCH/F')
17
18call_test_setup_run(bts_setup_cb=my_bts_setup)