BUGFIG op25

This commit is contained in:
Logan Cusano
2022-02-18 01:15:30 -05:00
parent 71fd0133a1
commit 300524d4af

View File

@@ -25,9 +25,10 @@ class OP25Handler(threading.Thread):
print(os.getcwd())
self.OP25Proc = subprocess.call(["python3", f"{self.OP25Dir}/rx.py", "--args", "'rtl'", "-N", "'LNA:49'", "-s", "200000", "-o",
"25600", "-U", "-f", f"{self.Frequency}e6", "-X", "-2", "-l" "http:0.0.0.0:8080"], shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
self.OP25Proc = subprocess.Popen(["python3", f"{self.OP25Dir}/rx.py", "--args", "'rtl'", "-N", "'LNA:49'", "-s",
"200000", "-o","25600", "-U", "-f", f"{self.Frequency}e6", "-X", "-2",
"-l" "http:0.0.0.0:8080"], shell=True, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
def close_op25(self):
print(f"Closing OP25")