BUGFIX op25Handler.py

- Possible shell issue
This commit is contained in:
Logan Cusano
2022-02-17 01:37:07 -05:00
parent 882fc59400
commit cf756e32e6

View File

@@ -25,7 +25,7 @@ class OP25Handler(threading.Thread):
os.chdir(self.OP25Dir)
self.OP25Proc = subprocess.Popen([f"./rx.py", "--args", "'rtl'", "-N", "'LNA:49'", "-s", "200000", "-o",
"25600", "-U", "-f", f"{self.Frequency}e6", "-X", "-2"])
"25600", "-U", "-f", f"{self.Frequency}e6", "-X", "-2"], shell=True)
def close_op25(self):
print(f"Closing OP25")