mirror of
https://github.com/g4klx/MMDVMHost
synced 2025-12-21 23:45:49 +08:00
Update RemoteControl.cpp
This commit is contained in:
@@ -26,6 +26,7 @@
|
|||||||
|
|
||||||
const unsigned int SET_MODE_ARGS = 2U;
|
const unsigned int SET_MODE_ARGS = 2U;
|
||||||
const unsigned int PAGE_ARGS = 3U;
|
const unsigned int PAGE_ARGS = 3U;
|
||||||
|
const unsigned int CW_ARGS = 2U;
|
||||||
|
|
||||||
const unsigned int BUFFER_LENGTH = 100U;
|
const unsigned int BUFFER_LENGTH = 100U;
|
||||||
|
|
||||||
@@ -89,7 +90,10 @@ REMOTE_COMMAND CRemoteControl::getCommand()
|
|||||||
} else if (m_args.at(0U) == "page" && m_args.size() >= PAGE_ARGS) {
|
} else if (m_args.at(0U) == "page" && m_args.size() >= PAGE_ARGS) {
|
||||||
// Page command is in the form of "page <ric> <message>"
|
// Page command is in the form of "page <ric> <message>"
|
||||||
m_command = RCD_PAGE;
|
m_command = RCD_PAGE;
|
||||||
}
|
} else if (m_args.at(0U) == "cw" && m_args.size() >= CW_ARGS) {
|
||||||
|
// CW command is in the form of "cw <message>"
|
||||||
|
m_command = RCD_CW;
|
||||||
|
}
|
||||||
|
|
||||||
if (m_command == RCD_NONE) {
|
if (m_command == RCD_NONE) {
|
||||||
m_args.clear();
|
m_args.clear();
|
||||||
@@ -115,6 +119,8 @@ unsigned int CRemoteControl::getArgCount() const
|
|||||||
return m_args.size() - SET_MODE_ARGS;
|
return m_args.size() - SET_MODE_ARGS;
|
||||||
case RCD_PAGE:
|
case RCD_PAGE:
|
||||||
return m_args.size() - 1U;
|
return m_args.size() - 1U;
|
||||||
|
case RCD_CW:
|
||||||
|
return m_args.size() - 1U;
|
||||||
default:
|
default:
|
||||||
return 0U;
|
return 0U;
|
||||||
}
|
}
|
||||||
@@ -135,6 +141,9 @@ std::string CRemoteControl::getArgString(unsigned int n) const
|
|||||||
case RCD_PAGE:
|
case RCD_PAGE:
|
||||||
n += 1U;
|
n += 1U;
|
||||||
break;
|
break;
|
||||||
|
case RCD_CW:
|
||||||
|
n += 1U;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user