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-06-29
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 "can.h"
18#include "status.h"
19
20/* Intra-component Headers */
21#include "front_controller.h"
22
29/* CAN Message Base Addresses */
30#define WS22_CAN_BASE_CONTROL 0x500U
31#define WS22_CAN_BASE_STATUS 0x80U
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
97typedef struct Ws22MotorCanStorage {
101
108
115
122
128
135
141
147
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