Skip to content

Commit

Permalink
fix: format, add missing ids
Browse files Browse the repository at this point in the history
  • Loading branch information
Pippo98 committed May 21, 2024
1 parent e238ce3 commit bfdb53a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
3 changes: 2 additions & 1 deletion proto/data/steer_command.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ syntax = "proto3";

package Data;

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

package Data;

message VehicleState {
double x;
double y;
double heading;
double u;
double v;
message VehicleState
{
double x = 1;
double y = 2;
double heading = 3;
double u = 4;
double v = 5;
}
6 changes: 4 additions & 2 deletions proto/telemetry/gps_maps.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@ message Baseline
repeated double y = 3;
}

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

message GPSMapOrigins {
message GPSMapOrigins
{
string selectedMap = 1;
map<string, GPSMapOrigin> origins = 2;
map<string, Baseline> tracksBaseline = 3;
Expand Down

0 comments on commit bfdb53a

Please sign in to comment.