diff --git a/src/rigs/FT891.cxx b/src/rigs/FT891.cxx index e9b54a37..3921a083 100644 --- a/src/rigs/FT891.cxx +++ b/src/rigs/FT891.cxx @@ -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_; }