trx/radio_if.py: fix: use proper block name

Since the 'TRX Burst Interface' block was renamed,
the followgraph is broken. Let's fix it.
This commit is contained in:
Vadim Yanitskiy 2017-10-17 09:00:47 +07:00 committed by Piotr Krysik
parent 51a95dfd40
commit 1a88dec147
1 changed files with 3 additions and 3 deletions

View File

@ -98,8 +98,8 @@ class radio_if(gr.top_block):
self.gsm_clck_ctrl = grgsm.clock_offset_control( self.gsm_clck_ctrl = grgsm.clock_offset_control(
shift_fc, self.samp_rate, osr = 4) shift_fc, self.samp_rate, osr = 4)
self.gsm_trx_if = grgsm.trx(self.trx_remote_addr, self.gsm_trx_burst_if = grgsm.trx_burst_if(
str(self.trx_base_port)) self.trx_remote_addr, str(self.trx_base_port))
################################################## ##################################################
# Connections # Connections
@ -115,7 +115,7 @@ class radio_if(gr.top_block):
(self.gsm_input, 'ctrl_in')) (self.gsm_input, 'ctrl_in'))
self.msg_connect((self.gsm_receiver, 'C0'), self.msg_connect((self.gsm_receiver, 'C0'),
(self.gsm_trx_if, 'bursts')) (self.gsm_trx_burst_if, 'bursts'))
def check_available(self): def check_available(self):
return self.fc_set return self.fc_set