optimized by Claude for faster processing + lower memory usage

This commit is contained in:
Aditya Pulipaka
2025-11-16 20:14:11 -06:00
parent 676e4d78a8
commit 9c04f6264e
4 changed files with 15 additions and 16 deletions

View File

@@ -5,11 +5,11 @@
// Inductive Sensor Mapping Struct
typedef struct IndSensorMap {
double A;
double K;
double B;
double C;
double v;
float A;
float K;
float B;
float C;
float v;
} IndSensorMap;
class IndSensor {