diff --git a/owrx/rigcontrol.py b/owrx/rigcontrol.py index 44513e00..8a051635 100644 --- a/owrx/rigcontrol.py +++ b/owrx/rigcontrol.py @@ -398,6 +398,10 @@ class RigControl(): # Create and start thread self.thread = threading.Thread(target=self._rigThread) self.thread.start() + # Clear current frequency and modulation + self.mod = None + self.fCenter = None + self.fOffset = None # Done logger.debug("Started RigControl as '{0}'.".format(" ".join(cmd))) return True