From deebb44133230fd695c55c1f0bcf24695e73695d Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Sat, 27 Jan 2024 17:13:17 -0500 Subject: [PATCH] Removing HL2 frequency change workaround (fixed in hpsdrconnector). --- owrx/source/hpsdr.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/owrx/source/hpsdr.py b/owrx/source/hpsdr.py index 9a7c694d..d7334a29 100644 --- a/owrx/source/hpsdr.py +++ b/owrx/source/hpsdr.py @@ -29,13 +29,6 @@ from typing import List # Radio 2: (Remote IP: 192.168.1.22, Server port: 7301) class HpsdrSource(ConnectorSource): - def postStart(self): - super().postStart() - # Force-send center frequency, since "cold" Hermes Lite 2 often - # comes up with distorted output until frequency is changed - if "center_freq" in self.sdrProps: - self.sendControlMessage({ "center_freq": self.sdrProps["center_freq"] }) - def getCommandMapper(self): return ( super()