Ignore get VFO rigctl command

This commit is contained in:
Nonoo 2020-11-08 22:25:18 +01:00
parent 8785d1d032
commit c56ade853f

View file

@ -270,6 +270,9 @@ func (s *rigctldStruct) processCmd(cmd string) (close bool, err error) {
} else {
_ = s.sendReplyCode(rigctldNoError)
}
case cmd == "v": // Ignore this command.
_ = s.sendReplyCode(rigctldUnsupportedCmd)
return
default:
_ = s.sendReplyCode(rigctldUnsupportedCmd)
return false, fmt.Errorf("got unknown cmd %s", cmd)