docs: scaffold polisher-control foundation
This commit is contained in:
28
firmware/teensy/include/polisher_telemetry.h
Normal file
28
firmware/teensy/include/polisher_telemetry.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#pragma once
|
||||
#include <stdint.h>
|
||||
|
||||
struct FT_LoadSample {
|
||||
float Fx;
|
||||
float Fy;
|
||||
float Fz;
|
||||
float Mx;
|
||||
float My;
|
||||
float Mz;
|
||||
uint32_t status;
|
||||
};
|
||||
|
||||
struct TelemetrySample {
|
||||
uint64_t timestamp_us;
|
||||
float table_angle_deg;
|
||||
float arm_angle_deg;
|
||||
float fz_n;
|
||||
float mx;
|
||||
float my;
|
||||
float mz;
|
||||
float spindle_rpm_actual;
|
||||
float table_rpm_actual;
|
||||
float arm_amplitude_deg_derived;
|
||||
float arm_center_deg_derived;
|
||||
uint8_t machine_state;
|
||||
float force_setpoint_n;
|
||||
};
|
||||
Reference in New Issue
Block a user