Midnight Sun Firmware
Loading...
Searching...
No Matches
ws22_motor_can.h
1#pragma once
2
3/************************************************************************************************
4 * @file ws22_motor_can.h
5 *
6 * @brief Header file for Wavesculptor 22 CAN interface
7 *
8 * @date 2025-04-23
9 * @author Midnight Sun Team #24 - MSXVI
10 ************************************************************************************************/
11
12/* Standard library Headers */
13#include <stdbool.h>
14#include <stdint.h>
15
16/* Inter-component Headers */
17#include "status.h"
18
19/* Intra-component Headers */
20
27/* CAN Message Base Addresses */
28#define WS22_CAN_BASE_CONTROL 0x500U
29#define WS22_CAN_BASE_STATUS 0x80U
31#define VEHICLE_RPM_TO_KPH 0.10367f
32
33/* CAN Message IDs */
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)
44
48typedef struct {
49 float current;
50 float velocity;
52
56typedef struct {
57 /* Status Information (0x401/0x81) */
58 uint16_t error_flags;
59 uint16_t limit_flags;
60 uint16_t merged_flags;
62 /* Bus Measurements (0x402/0x82) */
66 /* Velocity Measurements (0x403/0x83) */
70 /* Phase Currents (0x404/0x84) */
74 /* Motor Voltages (0x405/0x85) */
75 float voltage_d;
76 float voltage_q;
78 /* Motor Currents (0x406/0x86) */
79 float current_d;
80 float current_q;
82 /* Motor Back EMF (0x407/0x87) */
83 float back_emf_d;
84 float back_emf_q;
86 /* Power Rail (0x408/0x88) */
89 /* Temperature Measurements (0x40B/0x8B) */
91 float motor_temp;
93
94typedef struct {
105
109typedef struct Ws22MotorCanStorage {
113
120
127
134
140StatusCode ws22_motor_can_process_rx(uint8_t *msg_data_u8, uint32_t msg_id_raw, uint8_t msg_dlc);
141
147
153
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