Commit 24f6fa7 1 parent 4d5862c commit 24f6fa7 Copy full SHA for 24f6fa7
File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,9 @@ struct CarState {
135
135
seatbeltUnlatched @25 :Bool ;
136
136
canValid @26 :Bool ;
137
137
138
+ # clutch (manual transmission only)
139
+ clutchPressed @28 :Bool ;
140
+
138
141
# which packets this state came from
139
142
canMonoTimes @12 : List(UInt64);
140
143
@@ -350,6 +353,7 @@ struct CarParams {
350
353
carVin @38 :Text ; # VIN number queried during fingerprinting
351
354
isPandaBlack @39 : Bool;
352
355
dashcamOnly @41 : Bool;
356
+ transmissionType @43 :TransmissionType ;
353
357
354
358
struct LateralPIDTuning {
355
359
kpBP @0 :List(Float32) ;
@@ -390,7 +394,6 @@ struct CarParams {
390
394
l @7 :List(Float32) ; # Kalman gain
391
395
}
392
396
393
-
394
397
enum SafetyModel {
395
398
# does NOT match board setting
396
399
noOutput @0 ;
@@ -415,4 +418,10 @@ struct CarParams {
415
418
torque @0 ;
416
419
angle @1 ;
417
420
}
421
+
422
+ enum TransmissionType {
423
+ unknown @0 ;
424
+ automatic @1 ;
425
+ manual @2 ;
426
+ }
418
427
}
You can’t perform that action at this time.
0 commit comments