Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Differentiate transmission types #3

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions car.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ struct CarState {
# gear
gearShifter @14 :GearShifter;

# clutch (manual transmission only)
clutchPressed @27 :Bool;

# button presses
buttonEvents @11 :List(ButtonEvent);
leftBlinker @20 :Bool;
Expand Down Expand Up @@ -341,6 +344,7 @@ struct CarParams {
openpilotLongitudinalControl @37 :Bool; # is openpilot doing the longitudinal control?
carVin @38 :Text; # VIN number queried during fingerprinting
isPandaBlack @39: Bool;
transmissionType @40 :TransmissionType; # What type of transmission do we have?

struct LateralPIDTuning {
kpBP @0 :List(Float32);
Expand Down Expand Up @@ -402,4 +406,10 @@ struct CarParams {
torque @0;
angle @1;
}

enum TransmissionType {
unknown @0;
automatic @1;
manual @2;
}
}