Skip to content

Commit

Permalink
feat: added multiple lap comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolomarconi02 committed Jul 4, 2024
1 parent a8fc6bd commit 1bd2440
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions proto/data/telemetry_lap_data.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ syntax = "proto3";
package Data;

message VectorDouble{
repeated double data = 1;
repeated double buffer = 1;
}

message DataFile {
map<string, VectorDouble> data = 6;
}

message TelemetryLapData{
Expand All @@ -12,5 +16,9 @@ message TelemetryLapData{
string layoutId = 3;
string driverId = 4;
uint32 lapNumber = 5;
map<string, VectorDouble> data = 6;
string filenameHash = 6;
}

message DataBase{
repeated TelemetryLapData lapsData = 1;
}

0 comments on commit 1bd2440

Please sign in to comment.