Joint Level Control
response_messages.h
1 #include "joint_level_control/motor/hacker_const.h"
2 
3 
4 typedef enum State {
5  OFF = 0x00,
6  DETECTING = 0x01,
7  RUNNING = 0x02,
8  FULL_BRAKE = 0x03,
9  RUMP = 0x04
10 } state_t;
11 
12 
13 typedef enum Fault {
14  None = 0x00,
15  Overvoltage = 0x01,
16  Undervoltage = 0x02,
17  Driver_Error = 0x03,
18  Overcurrent = 0x04,
19  Overtemperature_Board = 0x05,
20  Overtemperature_Motor = 0x06
21 } fault_t;
22 
23 
24 typedef struct ControlResponse {
25  int16_t battery_current;
26  int16_t motor_current;
27  uint16_t battery_voltage;
28  uint16_t reserved_data;
29  uint16_t ppm_adc;
30  int16_t motor_temperature;
31  int16_t erpm;
32  int16_t rpm;
33  uint16_t pwm_frequency;
34  int16_t pwm_duty;
35  int16_t pcb_temperature;
36  state_t state;
37  fault_t fault;
39 
40 
41 typedef struct ScanResponse {
42  uint16_t can_address;
43  uint8_t mode;
44  uint32_t uid;
Definition: response_messages.h:24
Definition: response_messages.h:41