File tree Expand file tree Collapse file tree 3 files changed +16
-13
lines changed Expand file tree Collapse file tree 3 files changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ rosidl_generate_interfaces(${PROJECT_NAME}
21
21
action/LynxUpdate.action
22
22
msg/LynxDebug.msg
23
23
msg/LynxFeedback.msg
24
+ msg/LynxMotorProtection.msg
24
25
msg/LynxMultiDebug.msg
25
26
msg/LynxMultiFeedback.msg
26
27
msg/LynxMultiStatus.msg
Original file line number Diff line number Diff line change
1
+ # Number on the bus (CAN ID).
2
+ uint8 can_id
3
+
4
+ # Name of joint controlled, or other identifier.
5
+ string joint_name
6
+
7
+ # Protection states
8
+ uint8 NORMAL=0
9
+ uint8 THROTTLED=1
10
+ uint8 OVERHEATED=2
11
+ uint8 ERROR=3
12
+
13
+ # Protection state
14
+ uint8 state
Original file line number Diff line number Diff line change 1
1
std_msgs/Header header
2
2
3
- # Protection states
4
- uint8 NORMAL=0
5
- uint8 THROTTLED=1
6
- uint8 OVERHEATED=2
7
- uint8 ERROR=3
8
-
9
3
# System state based on highest protection state of motors
10
4
uint8 system_state
11
5
12
- # A300
13
- uint8 A300_MOTOR_REAR_LEFT=0
14
- uint8 A300_MOTOR_FRONT_LEFT=1
15
- uint8 A300_MOTOR_FRONT_RIGHT=2
16
- uint8 A300_MOTOR_REAR_RIGHT=3
17
-
18
6
# Individual motor protection states
19
- uint8 [] motor_states
7
+ clearpath_motor_msgs/LynxMotorProtection [] motor_states
You can’t perform that action at this time.
0 commit comments