Started custom_types.h

This commit is contained in:
2026-03-22 22:53:20 +01:00
parent 244cfa02c4
commit 8954979aa1

12
src/custom_types.h Normal file
View File

@@ -0,0 +1,12 @@
#include <inttypes.h>
typedef struct vehicle_config{
uint16_t config_lock;
bool auto_detect_track;
uint8_t num_tracks;
uint8_t selected_track;
};
typedef struct track_data {
char name[64];
};