21#include "front_controller.h"
30#define WS22_CAN_BASE_CONTROL 0x500U
31#define WS22_CAN_BASE_STATUS 0x80U
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 ws22_motor_can_set_current(float current)
Set motor control current command.
Definition: ws22_motor_can.c:172
StatusCode ws22_motor_can_process_rx(CanMessage *msg)
Process received CAN message for motor controller.
Definition: ws22_motor_can.c:201
StatusCode ws22_motor_can_set_velocity(float velocity)
Set motor control velocity command.
Definition: ws22_motor_can.c:181
StatusCode ws22_motor_can_transmit_drive_command(void)
Build and transmit motor drive command.
Definition: ws22_motor_can.c:190
Ws22MotorControlData * ws22_motor_can_get_control_data(void)
Get current motor control data.
Definition: ws22_motor_can.c:239
Ws22MotorTelemetryData * ws22_motor_can_get_telemetry_data(void)
Get current motor telemetry data.
Definition: ws22_motor_can.c:243
StatusCode ws22_motor_can_init(FrontControllerStorage *storage)
Initialize the WS22 motor CAN interface.
Definition: ws22_motor_can.c:161
StatusCode
StatusCodes for various errors.
Definition: status.h:27
CAN message structure.
Definition: can_msg.h:56
Front Controller storage.
Definition: front_controller.h:91
WS22 motor CAN interface storage structure.
Definition: ws22_motor_can.h:97
Ws22MotorControlData control
Definition: ws22_motor_can.h:98
Ws22MotorTelemetryData telemetry
Definition: ws22_motor_can.h:99
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
float vehicle_velocity
Definition: ws22_motor_can.h:67
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 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