28#define WS22_CAN_BASE_CONTROL 0x500U
29#define WS22_CAN_BASE_STATUS 0x80U
31#define VEHICLE_RPM_TO_KPH 0.10367f
34#define WS22_CAN_ID_DRIVE_CMD (WS22_CAN_BASE_CONTROL + 0x01U)
35#define WS22_CAN_ID_STATUS_INFO (WS22_CAN_BASE_STATUS + 0x01U)
36#define WS22_CAN_ID_BUS_MEASUREMENT (WS22_CAN_BASE_STATUS + 0x02U)
37#define WS22_CAN_ID_VELOCITY_MEASUREMENT (WS22_CAN_BASE_STATUS + 0x03U)
38#define WS22_CAN_ID_PHASE_CURRENT (WS22_CAN_BASE_STATUS + 0x04U)
39#define WS22_CAN_ID_MOTOR_VOLTAGE (WS22_CAN_BASE_STATUS + 0x05U)
40#define WS22_CAN_ID_MOTOR_CURRENT (WS22_CAN_BASE_STATUS + 0x06U)
41#define WS22_CAN_ID_MOTOR_BACK_EMF (WS22_CAN_BASE_STATUS + 0x07U)
42#define WS22_CAN_ID_RAIL_15V (WS22_CAN_BASE_STATUS + 0x08U)
43#define WS22_CAN_ID_TEMPERATURE (WS22_CAN_BASE_STATUS + 0x0BU)
StatusCode
StatusCodes for various errors.
Definition: status.h:27
StatusCode ws22_motor_can_set_current(float current)
Set motor control current command.
Definition: ws22_motor_can.c:135
StatusCode ws22_motor_can_init(Ws22MotorCanStorage *storage, Ws22MotorCanConfig *config)
Initialize the WS22 motor CAN interface.
Definition: ws22_motor_can.c:124
StatusCode ws22_motor_can_set_velocity(float velocity)
Set motor control velocity command.
Definition: ws22_motor_can.c:144
StatusCode ws22_motor_can_process_rx(uint8_t *msg_data_u8, uint32_t msg_id_raw, uint8_t msg_dlc)
Process received CAN message for motor controller.
Definition: ws22_motor_can.c:153
Ws22MotorControlData * ws22_motor_can_get_control_data(void)
Get current motor control data.
Definition: ws22_motor_can.c:218
Ws22MotorTelemetryData * ws22_motor_can_get_telemetry_data(void)
Get current motor telemetry data.
Definition: ws22_motor_can.c:222
Definition: ws22_motor_can.h:94
bool ws22_bus_measurement_enabled
Definition: ws22_motor_can.h:96
bool ws22_velocity_measurement_enabled
Definition: ws22_motor_can.h:97
bool ws22_motor_back_emf_enabled
Definition: ws22_motor_can.h:101
bool ws22_motor_voltage_enabled
Definition: ws22_motor_can.h:99
bool ws22_rail_15v_enabled
Definition: ws22_motor_can.h:102
bool ws22_phase_current_enabled
Definition: ws22_motor_can.h:98
bool ws22_temperature_enabled
Definition: ws22_motor_can.h:103
bool ws22_status_info_enabled
Definition: ws22_motor_can.h:95
bool ws22_motor_current_enabled
Definition: ws22_motor_can.h:100
WS22 motor CAN interface storage structure.
Definition: ws22_motor_can.h:109
Ws22MotorControlData control
Definition: ws22_motor_can.h:110
Ws22MotorTelemetryData telemetry
Definition: ws22_motor_can.h:111
Motor control command data structure.
Definition: ws22_motor_can.h:48
float velocity
Definition: ws22_motor_can.h:50
float current
Definition: ws22_motor_can.h:49
Motor status and telemetry data structure.
Definition: ws22_motor_can.h:56
float voltage_d
Definition: ws22_motor_can.h:75
uint16_t limit_flags
Definition: ws22_motor_can.h:59
float phase_b_current
Definition: ws22_motor_can.h:71
float voltage_q
Definition: ws22_motor_can.h:76
float current_d
Definition: ws22_motor_can.h:79
uint16_t merged_flags
Definition: ws22_motor_can.h:60
float back_emf_q
Definition: ws22_motor_can.h:84
float back_emf_d
Definition: ws22_motor_can.h:83
float motor_velocity
Definition: ws22_motor_can.h:68
float phase_c_current
Definition: ws22_motor_can.h:72
float bus_voltage
Definition: ws22_motor_can.h:64
float heat_sink_temp
Definition: ws22_motor_can.h:90
float rail_15v_supply
Definition: ws22_motor_can.h:87
float bus_current
Definition: ws22_motor_can.h:63
float vehicle_velocity_kph
Definition: ws22_motor_can.h:67
float current_q
Definition: ws22_motor_can.h:80
uint16_t error_flags
Definition: ws22_motor_can.h:58
float motor_temp
Definition: ws22_motor_can.h:91