From 897e53d4c04af311be4c7bd8b9bd9e2de181622c Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Wed, 16 Mar 2022 02:20:35 -0400 Subject: [PATCH] Changed the order of operations on boot so squelch is changed first --- gqrxHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gqrxHandler.py b/gqrxHandler.py index d230516..b5cf96c 100644 --- a/gqrxHandler.py +++ b/gqrxHandler.py @@ -43,6 +43,6 @@ class GQRXHandler(): tel_conn.close() def set_all_settings(self, mode, squelch, freq): + self.change_squelch(squelch) self.change_mode(mode) self.change_freq(freq) - self.change_squelch(squelch)