Skip to content

Commit

Permalink
feat: update baseline and gps_maps, add extra data protos
Browse files Browse the repository at this point in the history
  • Loading branch information
Pippo98 committed May 21, 2024
1 parent 325b62a commit e238ce3
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 9 deletions.
7 changes: 7 additions & 0 deletions proto/data/steer_command.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
syntax = "proto3";

package Data;

message SteerCommand {
double angleDegrees = 1;
}
11 changes: 11 additions & 0 deletions proto/data/vehicle_state.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
syntax = "proto3";

package Data;

message VehicleState {
double x;
double y;
double heading;
double u;
double v;
}
9 changes: 0 additions & 9 deletions proto/telemetry/baseline.proto

This file was deleted.

8 changes: 8 additions & 0 deletions proto/telemetry/gps_maps.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ syntax = "proto3";

package Telemetry;

message Baseline
{
bool valid = 1;
repeated double x = 2;
repeated double y = 3;
}

message GPSMapOrigin {
double latitude = 1;
double longitude = 2;
Expand All @@ -13,4 +20,5 @@ message GPSMapOrigin {
message GPSMapOrigins {
string selectedMap = 1;
map<string, GPSMapOrigin> origins = 2;
map<string, Baseline> tracksBaseline = 3;
}

0 comments on commit e238ce3

Please sign in to comment.