Skip to content

Commit

Permalink
add carState.steerWarning and carState.steerError
Browse files Browse the repository at this point in the history
  • Loading branch information
adeebshihadeh committed May 1, 2020
1 parent 8b347b0 commit 3f384ef
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions car.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,14 @@ struct CarState {
brakeLights @19 :Bool;

# steering wheel
steeringAngle @7 :Float32; # deg
steeringRate @15 :Float32; # deg/s
steeringTorque @8 :Float32; # TODO: standardize units
steeringAngle @7 :Float32; # deg
steeringRate @15 :Float32; # deg/s
steeringTorque @8 :Float32; # TODO: standardize units
steeringTorqueEps @27 :Float32; # TODO: standardize units
steeringPressed @9 :Bool; # if the user is using the steering wheel
steeringRateLimited @29 :Bool; # if the torque is limited by the rate limiter
steeringPressed @9 :Bool; # if the user is using the steering wheel
steeringRateLimited @29 :Bool; # if the torque is limited by the rate limiter
steerWarning @33 :Bool; # temporary steer unavailble
steerError @34 :Bool; # permanent steer error
stockAeb @30 :Bool;
stockFcw @31 :Bool;
espDisabled @32 :Bool;
Expand Down

0 comments on commit 3f384ef

Please sign in to comment.