Clearing tune settings when rig started.

This commit is contained in:
Marat Fayzullin 2025-01-02 14:32:58 -05:00
parent 53a1bda7da
commit 8cb05a5c12
1 changed files with 4 additions and 0 deletions

View File

@ -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