Skip to content
This repository has been archived by the owner on Apr 13, 2024. It is now read-only.

Commit

Permalink
noOutput safety mode is now called silent
Browse files Browse the repository at this point in the history
  • Loading branch information
rbiasini committed Nov 20, 2019
1 parent 83880d5 commit 2b0cb60
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions car.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ struct CarParams {
minEnableSpeed @7 :Float32;
minSteerSpeed @8 :Float32;
safetyModel @9 :SafetyModel;
safetyModelPassive @42 :SafetyModel = noOutput;
safetyModelPassive @42 :SafetyModel = silent;
safetyParam @10 :Int16;

steerMaxBP @11 :List(Float32);
Expand Down Expand Up @@ -402,7 +402,7 @@ struct CarParams {
}

enum SafetyModel {
noOutput @0;
silent @0;
honda @1;
toyota @2;
elm327 @3;
Expand All @@ -421,6 +421,7 @@ struct CarParams {
toyotaIpas @16;
allOutput @17;
gmAscm @18;
noOutput @19; # like silent but with silent CAN TXs
}

enum SteerControlType {
Expand Down

0 comments on commit 2b0cb60

Please sign in to comment.