blob: e6f6b983507213d62a56d84aca3e9f9ed49ae229 [file] [log] [blame]
#!/usr/bin/env python3
from osmo_gsm_tester.testenv import *
from testlib import call_test_setup_run
def my_bts_setup(bts):
bts.set_num_trx(1)
bts.set_trx_phy_channel(0, 0, 'CCCH+SDCCH4')
bts.set_trx_phy_channel(0, 1, 'SDCCH8')
bts.set_trx_phy_channel(0, 2, 'TCH/H')
bts.set_trx_phy_channel(0, 3, 'TCH/H')
bts.set_trx_phy_channel(0, 4, 'TCH/H')
bts.set_trx_phy_channel(0, 5, 'TCH/H')
bts.set_trx_phy_channel(0, 6, 'TCH/H')
bts.set_trx_phy_channel(0, 7, 'TCH/H')
call_test_setup_run(bts_setup_cb=my_bts_setup)