本文整理汇总了C++中sendCommandMessage函数的典型用法代码示例。如果您正苦于以下问题:C++ sendCommandMessage函数的具体用法?C++ sendCommandMessage怎么用?C++ sendCommandMessage使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了sendCommandMessage函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: sendCommandMessage
void QApplicationCommand::setMistEnabled(bool enable)
{
if (m_connectionState != Connected) {
return;
}
if (enable)
{
sendCommandMessage(pb::MT_EMC_COOLANT_MIST_ON);
}
else
{
sendCommandMessage(pb::MT_EMC_COOLANT_MIST_OFF);
}
}
开发者ID:bobvanderlinden,项目名称:QtQuickVcp,代码行数:15,代码来源:qapplicationcommand.cpp
示例2: if
void QApplicationCommand::jog(QApplicationCommand::JogType type, int axisIndex, double velocity, double distance)
{
if (m_connectionState != Connected) {
return;
}
pb::ContainerType containerType;
pb::EmcCommandParameters *commandParams = m_tx.mutable_emc_command_params();
commandParams->set_index(axisIndex);
if (type == StopJog)
{
containerType = pb::MT_EMC_AXIS_ABORT;
}
else if (type == ContinousJog) {
containerType = pb::MT_EMC_AXIS_JOG;
commandParams->set_velocity(velocity);
}
else if (type == IncrementJog)
{
containerType = pb::MT_EMC_AXIS_INCR_JOG;
commandParams->set_velocity(velocity);
commandParams->set_distance(distance);
}
else
{
m_tx.Clear();
return;
}
sendCommandMessage(containerType);
}
开发者ID:bobvanderlinden,项目名称:QtQuickVcp,代码行数:32,代码来源:qapplicationcommand.cpp
示例3: sendCommandMessage
void QApplicationLauncher::shutdown()
{
if (!m_connected) {
return;
}
sendCommandMessage(pb::MT_LAUNCHER_SHUTDOWN);
}
开发者ID:OEMBureau,项目名称:QtQuickVcp,代码行数:8,代码来源:qapplicationlauncher.cpp
示例4: DEBUG_TAG
void QApplicationLauncher::start(int index)
{
if (!m_connected) {
return;
}
#ifdef QT_DEBUG
DEBUG_TAG(1, m_commandIdentity, "starting launcher" << index)
#endif
m_tx.set_index(index);
sendCommandMessage(pb::MT_LAUNCHER_START);
}
开发者ID:OEMBureau,项目名称:QtQuickVcp,代码行数:13,代码来源:qapplicationlauncher.cpp
注:本文中的sendCommandMessage函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论