blob: 6b820d955b0e14248c6cf4621e53a33c9fe63062 [file] [log] [blame]
Pau Espin Pedrolb2ce2f22018-05-07 17:26:59 +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/H')
12 bts.set_trx_phy_channel(0, 3, 'TCH/H')
13 bts.set_trx_phy_channel(0, 4, 'TCH/H')
14 bts.set_trx_phy_channel(0, 5, 'TCH/H')
15 bts.set_trx_phy_channel(0, 6, 'TCH/H')
16 bts.set_trx_phy_channel(0, 7, 'TCH/H')
17
18call_test_setup_run(bts_setup_cb=my_bts_setup)