Vadim Yanitskiy has uploaded this change for review. ( 
https://gerrit.osmocom.org/12633


Change subject: trx/radio_if.py: introduce a new @property 'ready'
......................................................................

trx/radio_if.py: introduce a new @property 'ready'

Change-Id: I513da0f45c6a608d15fbd0e8eafe14d6af8833d7
---
M python/trx/radio_if.py
1 file changed, 10 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/gr-gsm refs/changes/33/12633/1

diff --git a/python/trx/radio_if.py b/python/trx/radio_if.py
index 93080c4..e15add2 100644
--- a/python/trx/radio_if.py
+++ b/python/trx/radio_if.py
@@ -259,6 +259,16 @@
                self.stop()
                self.wait()

+       @property
+       def ready(self):
+               # RX / TX frequencies shall be set
+               if self.rx_freq is None:
+                       return False
+               if self.tx_freq is None:
+                       return False
+
+               return True
+
        def calc_phase_inc(self, fc):
                return self.ppm / 1.0e6 * 2 * pi * fc / self.sample_rate


--
To view, visit https://gerrit.osmocom.org/12633
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: gr-gsm
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I513da0f45c6a608d15fbd0e8eafe14d6af8833d7
Gerrit-Change-Number: 12633
Gerrit-PatchSet: 1
Gerrit-Owner: Vadim Yanitskiy <axilira...@gmail.com>

Reply via email to