-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove drift and control dimension services, add ServoCommandType ser…
…vice and ServoStatus message
- Loading branch information
1 parent
313bd6a
commit d4769ca
Showing
5 changed files
with
25 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Message | ||
int8 code # will contains integer code | ||
string message # will contain explanatory message | ||
|
||
# Status types (should reflect StatusCode from moveit_servo/utils/datatype.hpp) | ||
int8 INVALID = -1 | ||
int8 NO_WARNING = 0 | ||
int8 DECELERATE_FOR_APPROACHING_SINGULARITY = 1 | ||
int8 HALT_FOR_SINGULARITY = 2 | ||
int8 DECELERATE_FOR_LEAVING_SINGULARITY = 3 | ||
int8 DECELERATE_FOR_COLLISION = 4 | ||
int8 HALT_FOR_COLLISION = 5 | ||
int8 JOINT_BOUND = 6 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Request constants | ||
int8 JOINT_JOG = 0 | ||
int8 TWIST = 1 | ||
int8 POSE = 2 | ||
|
||
# Request Field | ||
int8 command_type | ||
--- | ||
# Response Field | ||
bool success |