Skip to content

Commit

Permalink
feat: added telemetry_lap_data
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolomarconi02 committed Jul 1, 2024
1 parent 47bc876 commit a8fc6bd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions proto/data/telemetry_lap_data.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
syntax = "proto3";

package Data;

message VectorDouble{
repeated double data = 1;
}

message TelemetryLapData{
string dateTime = 1;
string circuitId = 2;
string layoutId = 3;
string driverId = 4;
uint32 lapNumber = 5;
map<string, VectorDouble> data = 6;
}

0 comments on commit a8fc6bd

Please sign in to comment.