-
Notifications
You must be signed in to change notification settings - Fork 1
32 task operation mode msg srv #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
d108ac8
d88e725
9549a9d
19f6956
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Enum operation mode | ||
| uint8 mode | ||
|
|
||
| # Operation mode | ||
| uint8 AUTONOMOUS = 1 | ||
| uint8 MANUAL = 2 | ||
| uint8 REFERENCE = 3 | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| #request | ||
| uint8 mode | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This field should be the operation mode msg to be more explicit |
||
|
|
||
| vortex_msgs/OperationMode[] modes | ||
|
Comment on lines
+2
to
+4
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need both? Also do we need an array of modes? |
||
|
|
||
| --- | ||
| #response | ||
| uint8 mode | ||
| bool killswitch_status | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| #request | ||
| bool killswitch_on | ||
|
|
||
| --- | ||
| #response | ||
| uint8 mode | ||
| bool killswitch_status |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why have both |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| #request | ||
| --- | ||
| #response | ||
| uint8 mode | ||
| bool killswitch_status |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider renaming this to somethign more descriptive like SetOperationMode