From 30d539312eea4587ef12a6828d2b55829cb3bbd5 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 27 Mar 2022 13:03:00 -0400 Subject: [PATCH] Using a list with extend instead of append --- op25Handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op25Handler.py b/op25Handler.py index 26079cb..e846008 100644 --- a/op25Handler.py +++ b/op25Handler.py @@ -51,7 +51,7 @@ class OP25Handler(threading.Thread): if self.OP25Proc is not None: self.close_op25() - p25_kwargs = [f"{self.OP25Dir}./rx.py", "--args", "rtl", "-N", "LNA:49", "-s", "200000", "-o", "25600", "-U", "-f", + p25_kwargs = [f"{self.OP25Dir}/rx.py", "--args", "rtl", "-N", "LNA:49", "-s", "200000", "-o", "25600", "-U", "-f", f"{self.Frequency}e6", "-X", "-2"] #p25_kwargs = f"{self.OP25Dir}/rx.py --args rtl -N LNA:49 -s 200000 -o 25600 -U -f {self.Frequency}e6 -X -2"