Skip to content

Commit

Permalink
Merge pull request #5 from GiacomoCorradini/main
Browse files Browse the repository at this point in the history
Update session config message, change ambient field with ambient_temperature and track_temperature. Update car config message, add pressure filed in Wheel message and change bound field with bound_low_comp and bound_hign_comp
  • Loading branch information
andreolli-davide authored Feb 29, 2024
2 parents 7d79893 + 0c75978 commit 2470135
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 5 additions & 3 deletions proto/configs/car_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ message Wheel
{
double camber = 1;
double toe = 2;
string pressure = 3;
}

message Damper
{
double bound = 1;
double rebound = 2;
double preload = 3;
double bound_low_comp = 1;
double bound_high_comp = 2;
double rebound = 3;
double preload = 4;
}

message CarConfig
Expand Down
5 changes: 3 additions & 2 deletions proto/configs/session_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ package Configs;

message Weather
{
double temperature = 1;
double humidity = 2;
double ambient_temperature = 1;
double track_temperature = 2;
double humidity = 3;
}

message SessionConfig
Expand Down

0 comments on commit 2470135

Please sign in to comment.