File tree 2 files changed +23
-1
lines changed
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1
1
builtin_interfaces/Time stamp
2
+ bool ctrl
2
3
string mode
Original file line number Diff line number Diff line change 1
1
uint8 UNDEFINED = 0
2
+
3
+ # for main state
4
+ uint8 DISABLED = 1
5
+ uint8 DISABLING = 2
6
+ uint8 ENABLED = 3
7
+ uint8 STANDBY = 4
8
+ uint8 INTERRUPTED = 5
9
+ uint8 ABORTED = 6
10
+ uint8 WAIT_COMMAND_MODE_READY = 101
11
+ uint8 WAIT_SOURCE_READY = 102
12
+ uint8 WAIT_SOURCE_EXCLUSIVE = 102
13
+ uint8 WAIT_SOURCE_SELECTED = 103
14
+ uint8 WAIT_VEHICLE_READY = 104
15
+ uint8 WAIT_VEHICLE_CONTROL = 105
16
+ uint8 WAIT_COMMAND_MODE_STABLE = 106
17
+
18
+ # for mrm state
2
19
uint8 NONE = 1
3
20
uint8 OPERATING = 2
4
21
uint8 SUCCEEDED = 3
5
22
uint8 FAILED = 4
6
23
24
+ # variables
7
25
string mode
26
+ uint8 state
27
+ uint8 mrm
28
+
29
+ # TODO: remove
8
30
bool activation
9
31
bool transition
10
- uint8 mrm
You can’t perform that action at this time.
0 commit comments