Skip to content

Commit

Permalink
merged
Browse files Browse the repository at this point in the history
  • Loading branch information
RCMast3r committed Nov 2, 2024
2 parents dd65e80 + 5abbad0 commit d191aad
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions proto/base_msgs.proto
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,13 @@ message GPS_data
float lon = 2;
}

enum INSStatus {
enum INSMode {
TRACKING_0 = 0;
ALIGNING_1 = 1;
TRACKING_2 = 2;
GPS_LOSS_3 = 3;
}


message GPS_compass_signal_health_status
{
int32 num_sats_pvt_1 = 1;
Expand All @@ -68,8 +67,14 @@ message GPS_compass_signal_health_status

message vn_status
{
INSStatus ins_status = 1;
GPS_compass_signal_health_status gps_status = 2;
INSMode ins_mode = 1;
bool gnss_fix = 2;
bool error_imu = 3;
bool error_mag_pres = 4;
bool error_gnss = 5;
bool gnss_heading_ins = 6;
bool gnss_compass = 7;
GPS_compass_signal_health_status gps_status = 8;
}

message TireDynamics
Expand All @@ -92,4 +97,4 @@ message TorqueVectoringStatus
float psi_dot_gain = 8;
float vy_vn_gain = 9;
float perceived_vy = 10;
}
}

0 comments on commit d191aad

Please sign in to comment.