From f5d2302bc8a43060c59c70509be40a1a5f68ce61 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 12 Nov 2023 09:28:02 -0500 Subject: [PATCH] Update rpitx.py turn off command if squelch is 8 --- rpitx.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rpitx.py b/rpitx.py index 3b02eac8..2fe777a8 100644 --- a/rpitx.py +++ b/rpitx.py @@ -258,6 +258,11 @@ if __name__ == "__main__": print print(callsign) print(squelch) + if squelch == 8: + print("squelch set to 8, no command input!") + no_command = True + else: + no_command = False except: callsign = "AMSAT"