Skip to content

Commit

Permalink
improves comments and adds more states for nav ctrl msgs
Browse files Browse the repository at this point in the history
  • Loading branch information
bit-pirate committed Aug 22, 2014
1 parent 3826268 commit 684c772
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions msg/NavigationControl.msg
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Control the way point/trajectory navigation
# control the way point/trajectory navigation
int8 control

int8 STOP = 0
int8 START = 1
int8 PAUSE = 2

# Name of the way point(s) / trajectory to be execute/stopped/paused
# name of the way point(s) / trajectory to be execute
# leave empty, when stopping or pausing
string goal_name
5 changes: 3 additions & 2 deletions msg/NavigationControlStatus.msg
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ int8 status
int8 ERROR = -1
int8 IDLING = 0
int8 RUNNING = 1
int8 COMPLETED = 2
int8 CANCELLED = 3
int8 PAUSED = 2
int8 COMPLETED = 3
int8 CANCELLED = 4

# Human-readable status description
string status_desc

0 comments on commit 684c772

Please sign in to comment.