Skip to content

Commit

Permalink
Merge branch 'main' of github.com:eagletrt/telemetry-serializers
Browse files Browse the repository at this point in the history
  • Loading branch information
guglielmo-boi committed May 21, 2024
2 parents 1c67072 + a291a32 commit 325b62a
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
10 changes: 4 additions & 6 deletions proto/lapcounter/lap_counter.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ message LcPoint
double position_y = 20;
double inclination_x = 30;
double inclination_y = 40;
double line_x = 50;
double line_y = 60;
}

message TrackLayout
Expand All @@ -26,15 +24,15 @@ message Time
{
int32 layout_id = 10;
string driver_name = 20;
int64 start_timestamp = 30;
int64 end_timestamp = 40;
repeated int64 sectors_timestamp = 50;
uint64 start_timestamp = 30;
uint64 end_timestamp = 40;
repeated uint64 sectors_timestamp = 50;
}

message DriverRecord
{
string driver = 10;
int64 timestamp = 20;
uint64 timestamp = 20;
}

message TrackRecord
Expand Down
9 changes: 9 additions & 0 deletions proto/telemetry/baseline.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
syntax = "proto3";

package Telemetry;

message Baseline
{
repeated double xs = 1;
repeated double ys = 2;
}
16 changes: 16 additions & 0 deletions proto/telemetry/gps_maps.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
syntax = "proto3";

package Telemetry;

message GPSMapOrigin {
double latitude = 1;
double longitude = 2;
double ecefX = 3;
double ecefY = 4;
double ecefZ = 5;
}

message GPSMapOrigins {
string selectedMap = 1;
map<string, GPSMapOrigin> origins = 2;
}

0 comments on commit 325b62a

Please sign in to comment.