update noisegate #9

Closed
logan wants to merge 30 commits from master into NoiseGateV2
Showing only changes of commit ec7880ed1e - Show all commits

View File

@@ -36,11 +36,12 @@ class OP25Handler: #(threading.Thread):
if self.HTTP_ENABLED:
self.OP25Proc = subprocess.Popen([f"./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"])
"-l" "http:0.0.0.0:8080"], shell=True)
else:
self.OP25Proc = subprocess.Popen([f"./rx.py", "--args", "rtl", "-N", "LNA:49", "-s",
"200000", "-o", "25600", "-U", "-f", f"{self.Frequency}e6", "-X", "-2"])
"200000", "-o", "25600", "-U", "-f", f"{self.Frequency}e6", "-X", "-2"],
shell=True)
os.chdir(cwd)