aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-10-17 09:00:47 +0700
committerPiotr Krysik <ptrkrysik@users.noreply.github.com>2017-11-05 17:33:26 +0100
commit1a88dec14764f256f71670f23d1bb717225f736d (patch)
treea62fb1d64c000f8aa7f792129ed6ba69f19e2948 /python
parent51a95dfd403f027909cf0f95c98e400db2c8fdfb (diff)
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.
Diffstat (limited to 'python')
-rw-r--r--python/trx/radio_if.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/trx/radio_if.py b/python/trx/radio_if.py
index 40fcabb..661025a 100644
--- a/python/trx/radio_if.py
+++ b/python/trx/radio_if.py
@@ -98,8 +98,8 @@ class radio_if(gr.top_block):
self.gsm_clck_ctrl = grgsm.clock_offset_control(
shift_fc, self.samp_rate, osr = 4)
- self.gsm_trx_if = grgsm.trx(self.trx_remote_addr,
- str(self.trx_base_port))
+ self.gsm_trx_burst_if = grgsm.trx_burst_if(
+ self.trx_remote_addr, str(self.trx_base_port))
##################################################
# Connections
@@ -115,7 +115,7 @@ class radio_if(gr.top_block):
(self.gsm_input, 'ctrl_in'))
self.msg_connect((self.gsm_receiver, 'C0'),
- (self.gsm_trx_if, 'bursts'))
+ (self.gsm_trx_burst_if, 'bursts'))
def check_available(self):
return self.fc_set