aboutsummaryrefslogtreecommitdiffstats
path: root/python/trx/ctrl_if.py
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-10-17 06:52:01 +0700
committerPiotr Krysik <ptrkrysik@users.noreply.github.com>2017-11-05 17:33:26 +0100
commit873e44e68d188b5c26621b8ee8fd0c33bf9bd29d (patch)
treec535e21b6562918b240f9a022e7d41ff4cbe7613 /python/trx/ctrl_if.py
parent52917b1034051d97b29db8b024de1603d58c306c (diff)
python/trx: follow GNU Radio class naming conventions
Diffstat (limited to 'python/trx/ctrl_if.py')
-rw-r--r--python/trx/ctrl_if.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/trx/ctrl_if.py b/python/trx/ctrl_if.py
index a9050ef..7dee0f8 100644
--- a/python/trx/ctrl_if.py
+++ b/python/trx/ctrl_if.py
@@ -22,9 +22,9 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-from grgsm import UDPLink
+from grgsm.trx import udp_link
-class CTRLInterface(UDPLink):
+class ctrl_if(udp_link):
def handle_rx(self, data):
if self.verify_req(data):
request = self.prepare_req(data)