trx_toolkit/fake_trx.py: fix: update trx_list of FakePM

It seems in Ice44e2b22566b3652ef6d43896055963b13ab185 I forgot
to do this, so all measurements triggered by MEASURE command
were incorrect (always noise). Let's fix this!

Change-Id: I155f118b2d3e3b23eb148fe7e2630790f8fcd18c
This commit is contained in:
Vadim Yanitskiy 2019-01-13 16:21:31 +07:00
parent 786e97a0dc
commit e4e3e6facd
1 changed files with 1 additions and 0 deletions

View File

@ -308,6 +308,7 @@ class Application(ApplicationBase):
# Noise: -120 .. -105
# BTS: -75 .. -50
self.fake_pm = FakePM(-120, -105, -75, -50)
self.fake_pm.trx_list = self.trx_list
# Init TRX instance for BTS
self.append_trx(self.argv.bts_addr, self.argv.bts_base_port)