Skip to content
Snippets Groups Projects
Commit 0cf6efd6 authored by Tommy Persson's avatar Tommy Persson
Browse files

Cleaning up, adding TSTSetFlag and removing other service definitions.

parent d8bd6a45
No related branches found
No related tags found
No related merge requests found
Pipeline #49439 passed
...@@ -89,15 +89,11 @@ TSTInitUniqueNodeId.srv ...@@ -89,15 +89,11 @@ TSTInitUniqueNodeId.srv
TSTMakeLocalCopy.srv TSTMakeLocalCopy.srv
TSTRemoveNode.srv TSTRemoveNode.srv
TSTRemoveNodeWaitForFinished.srv TSTRemoveNodeWaitForFinished.srv
TSTSetAbortedFlag.srv
TSTSetRevokedFlag.srv
TSTSetActiveFlag.srv
TSTSetApprovedFlag.srv TSTSetApprovedFlag.srv
TSTSetTreeApprovedFlag.srv TSTSetTreeApprovedFlag.srv
TSTSetConstraints.srv TSTSetConstraints.srv
TSTSetExecInfo.srv TSTSetExecInfo.srv
TSTSetExecutingFlag.srv TSTSetFlag.srv
TSTSetFinishedFlag.srv
TSTSetNodeParameterFloat64.srv TSTSetNodeParameterFloat64.srv
TSTSetNodeParameterFloat64s.srv TSTSetNodeParameterFloat64s.srv
TSTSetNodeParameterBool.srv TSTSetNodeParameterBool.srv
...@@ -110,18 +106,15 @@ TSTSetNodeParameterPoints.srv ...@@ -110,18 +106,15 @@ TSTSetNodeParameterPoints.srv
TSTSetNodeParameterPose.srv TSTSetNodeParameterPose.srv
TSTSetNodeParameterString.srv TSTSetNodeParameterString.srv
TSTSetNodeParameterStrings.srv TSTSetNodeParameterStrings.srv
TSTSetPausedFlag.srv
TSTSetFailReason.srv TSTSetFailReason.srv
TSTSetStartExecutorFlag.srv TSTSetStartExecutorFlag.srv
TSTSetAbortExecutorFlag.srv TSTSetAbortExecutorFlag.srv
TSTSetPauseExecutorFlag.srv TSTSetPauseExecutorFlag.srv
TSTSetContinueExecutorFlag.srv TSTSetContinueExecutorFlag.srv
TSTSetEnoughExecutorFlag.srv TSTSetEnoughExecutorFlag.srv
TSTSetSucceededFlag.srv
TSTSetTree.srv TSTSetTree.srv
TSTSetTreeStartTime.srv TSTSetTreeStartTime.srv
TSTSetNodeStartTime.srv TSTSetNodeStartTime.srv
TSTSetWaitingFlag.srv
TSTSetAllSame.srv TSTSetAllSame.srv
TSTSetAllDifferent.srv TSTSetAllDifferent.srv
TSTSetDelExecResources.srv TSTSetDelExecResources.srv
......
#
# Set the node flag active to the value val.
#
int32 id # Node id in the factory
bool val
---
bool success
int32 error
string reason
#
# Set the node flag executing to the value val.
#
int32 id # Node id in the factory
bool val
---
bool success
int32 error
string reason
#
# Set the node flag finished to the value val.
#
int32 id # Node id in the factory
bool val
---
bool success
int32 error
string reason
# #
# Set the node flag aborted to the value val. # Set the flag for node to val. The service name indicates which flag to set.
# #
int32 id # Node id in the factory int32 id # Node id in the factory
......
#
# Set the node flag paused to the value val.
#
int32 id # Node id in the factory
bool val
---
bool success
int32 error
string reason
#
# Set the node flag revoked to the value val.
#
int32 id # Node id in the factory
bool val
---
bool success
int32 error
string reason
#
# Set the node flag succeeded to the value val.
#
int32 id # Node id in the factory
bool val
---
bool success
int32 error
string reason
#
# Set the node flag waiting to the value val.
#
int32 id # Node id in the factory
bool val
---
bool success
int32 error
string reason
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment