Skip to content

Commit 025e9c6

Browse files
committed
@mbridak fix rprt showing as a mode.
1 parent bb02780 commit 025e9c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: not1mm/lib/cat_interface.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,8 @@ def __getmode_rigctld(self) -> str:
337337
self.rigctrlsocket.send(b"m\n")
338338
mode = self.__get_serial_string()
339339
mode = mode.strip().split()[0]
340-
# logger.debug("%s", mode)
340+
if mode == "RPRT":
341+
return ""
341342
return mode
342343
except IndexError as exception:
343344
logger.debug("%s", f"{exception}")

0 commit comments

Comments
 (0)