converted the LapInfo struct to use the float_array implementation

This commit is contained in:
2026-01-14 20:10:31 +01:00
parent c5c5f44ec4
commit c6a870a462

View File

@@ -3,6 +3,8 @@
#include <stdint.h> #include <stdint.h>
#include "arrays.h"
typedef enum { typedef enum {
BOOL, BOOL,
INT, INT,
@@ -22,10 +24,10 @@ typedef struct {
typedef struct { typedef struct {
int lap_number; int lap_number;
double start_time; double start_time;
TelemetryInfo throttle_pos; // freq: 50 float_array throttle_pos;
TelemetryInfo brake_pos; // freq: 50 float_array brake_pos;
TelemetryInfo steering_pos; // freq: 100 float_array steering_pos; // freq: 100
TelemetryInfo speed; float_array speed;
} LapInfo; } LapInfo;
void free_telemetry_info(TelemetryInfo *t); void free_telemetry_info(TelemetryInfo *t);