* add get_trace statement to get_ptt method
This commit is contained in:
David Freese 2020-07-08 19:00:26 -05:00
parent bbd4717327
commit bf1889eae5

View file

@ -523,6 +523,9 @@ int RIG_FT891::get_PTT()
size_t p = replystr.rfind(rsp);
if (p == string::npos) return ptt_;
ptt_ = (replystr[p+2] != '0' ? 1 : 0);
get_trace(4, "get_ptt():\n", cmd.c_str(), "\n", replystr.c_str());
return ptt_;
}