2019-06-14 03:06:15 +08:00
|
|
|
using Cxx = import "./include/c++.capnp";
|
|
|
|
$Cxx.namespace("cereal");
|
|
|
|
|
|
|
|
using Java = import "./include/java.capnp";
|
|
|
|
$Java.package("ai.comma.openpilot.cereal");
|
|
|
|
$Java.outerClassname("Car");
|
|
|
|
|
|
|
|
@0x8e2af1e708af8b8d;
|
|
|
|
|
|
|
|
# ******* events causing controls state machine transition *******
|
|
|
|
|
|
|
|
struct CarEvent @0x9b1657f34caf3ad3 {
|
|
|
|
name @0 :EventName;
|
2021-02-04 11:56:19 +08:00
|
|
|
|
|
|
|
# event types
|
2019-06-14 03:06:15 +08:00
|
|
|
enable @1 :Bool;
|
|
|
|
noEntry @2 :Bool;
|
2020-05-13 12:05:31 +08:00
|
|
|
warning @3 :Bool; # alerts presented only when enabled or soft disabling
|
2019-06-14 03:06:15 +08:00
|
|
|
userDisable @4 :Bool;
|
|
|
|
softDisable @5 :Bool;
|
|
|
|
immediateDisable @6 :Bool;
|
|
|
|
preEnable @7 :Bool;
|
2020-05-13 12:05:31 +08:00
|
|
|
permanent @8 :Bool; # alerts presented regardless of openpilot state
|
2019-06-14 03:06:15 +08:00
|
|
|
|
|
|
|
enum EventName @0xbaa8c5d505f727de {
|
2019-06-15 10:05:45 +08:00
|
|
|
canError @0;
|
2019-06-14 03:06:15 +08:00
|
|
|
steerUnavailable @1;
|
|
|
|
brakeUnavailable @2;
|
|
|
|
wrongGear @4;
|
|
|
|
doorOpen @5;
|
|
|
|
seatbeltNotLatched @6;
|
|
|
|
espDisabled @7;
|
|
|
|
wrongCarMode @8;
|
|
|
|
steerTempUnavailable @9;
|
|
|
|
reverseGear @10;
|
|
|
|
buttonCancel @11;
|
|
|
|
buttonEnable @12;
|
|
|
|
pedalPressed @13;
|
|
|
|
cruiseDisabled @14;
|
|
|
|
speedTooLow @17;
|
|
|
|
outOfSpace @18;
|
|
|
|
overheat @19;
|
|
|
|
calibrationIncomplete @20;
|
|
|
|
calibrationInvalid @21;
|
|
|
|
controlsMismatch @22;
|
|
|
|
pcmEnable @23;
|
|
|
|
pcmDisable @24;
|
|
|
|
noTarget @25;
|
|
|
|
radarFault @26;
|
|
|
|
brakeHold @28;
|
|
|
|
parkBrake @29;
|
|
|
|
manualRestart @30;
|
|
|
|
lowSpeedLockout @31;
|
|
|
|
plannerError @32;
|
|
|
|
debugAlert @34;
|
2021-04-21 10:50:20 +08:00
|
|
|
steerTempUnavailableUserOverride @35;
|
2019-06-14 03:06:15 +08:00
|
|
|
resumeRequired @36;
|
|
|
|
preDriverDistracted @37;
|
|
|
|
promptDriverDistracted @38;
|
|
|
|
driverDistracted @39;
|
|
|
|
preDriverUnresponsive @43;
|
|
|
|
promptDriverUnresponsive @44;
|
|
|
|
driverUnresponsive @45;
|
|
|
|
belowSteerSpeed @46;
|
|
|
|
lowBattery @48;
|
|
|
|
vehicleModelInvalid @50;
|
2021-04-08 03:01:36 +08:00
|
|
|
accFaulted @51;
|
2019-06-14 03:06:15 +08:00
|
|
|
sensorDataInvalid @52;
|
2019-06-19 07:39:45 +08:00
|
|
|
commIssue @53;
|
2019-07-16 07:07:12 +08:00
|
|
|
tooDistracted @54;
|
2019-07-19 05:36:57 +08:00
|
|
|
posenetInvalid @55;
|
2019-08-06 08:02:57 +08:00
|
|
|
soundsUnavailable @56;
|
2019-09-06 08:28:13 +08:00
|
|
|
preLaneChangeLeft @57;
|
|
|
|
preLaneChangeRight @58;
|
|
|
|
laneChange @59;
|
2019-12-03 11:29:56 +08:00
|
|
|
communityFeatureDisallowed @62;
|
2019-12-06 04:25:13 +08:00
|
|
|
lowMemory @63;
|
2019-12-06 08:46:16 +08:00
|
|
|
stockAeb @64;
|
2019-12-11 06:34:34 +08:00
|
|
|
ldw @65;
|
2019-12-14 06:19:31 +08:00
|
|
|
carUnrecognized @66;
|
2020-01-16 07:48:42 +08:00
|
|
|
driverMonitorLowAcc @68;
|
2020-03-28 07:11:02 +08:00
|
|
|
invalidLkasSetting @69;
|
2020-03-31 06:49:30 +08:00
|
|
|
speedTooHigh @70;
|
2020-06-16 07:00:12 +08:00
|
|
|
laneChangeBlocked @71;
|
2020-04-17 01:17:17 +08:00
|
|
|
relayMalfunction @72;
|
2020-05-05 05:08:35 +08:00
|
|
|
gasPressed @73;
|
2020-05-08 03:29:04 +08:00
|
|
|
stockFcw @74;
|
2020-05-12 08:08:23 +08:00
|
|
|
startup @75;
|
|
|
|
startupNoCar @76;
|
|
|
|
startupNoControl @77;
|
|
|
|
startupMaster @78;
|
2021-04-20 17:57:09 +08:00
|
|
|
startupFuzzyFingerprint @97;
|
2020-05-12 08:08:23 +08:00
|
|
|
fcw @79;
|
|
|
|
steerSaturated @80;
|
2020-06-03 07:41:54 +08:00
|
|
|
belowEngageSpeed @84;
|
2020-06-13 07:03:46 +08:00
|
|
|
noGps @85;
|
2020-06-16 03:24:08 +08:00
|
|
|
wrongCruiseMode @87;
|
2020-07-06 10:45:36 +08:00
|
|
|
modeldLagging @89;
|
2020-08-04 06:01:19 +08:00
|
|
|
deviceFalling @90;
|
2020-10-06 01:57:30 +08:00
|
|
|
fanMalfunction @91;
|
2020-10-23 05:46:25 +08:00
|
|
|
cameraMalfunction @92;
|
2021-01-15 05:04:33 +08:00
|
|
|
gpsMalfunction @94;
|
2021-01-26 12:01:39 +08:00
|
|
|
processNotRunning @95;
|
2021-03-26 11:34:36 +08:00
|
|
|
dashcamMode @96;
|
2021-04-27 14:04:47 +08:00
|
|
|
controlsInitializing @98;
|
2021-05-15 11:09:41 +08:00
|
|
|
usbError @99;
|
2021-05-20 11:43:52 +08:00
|
|
|
cameraError @100;
|
2020-12-20 08:39:32 +08:00
|
|
|
|
2021-02-04 11:56:19 +08:00
|
|
|
radarCanErrorDEPRECATED @15;
|
|
|
|
radarCommIssueDEPRECATED @67;
|
2020-10-15 06:17:32 +08:00
|
|
|
gasUnavailableDEPRECATED @3;
|
2020-09-23 04:46:27 +08:00
|
|
|
dataNeededDEPRECATED @16;
|
|
|
|
modelCommIssueDEPRECATED @27;
|
|
|
|
ipasOverrideDEPRECATED @33;
|
|
|
|
geofenceDEPRECATED @40;
|
|
|
|
driverMonitorOnDEPRECATED @41;
|
|
|
|
driverMonitorOffDEPRECATED @42;
|
|
|
|
calibrationProgressDEPRECATED @47;
|
|
|
|
invalidGiraffeHondaDEPRECATED @49;
|
2020-10-31 03:06:58 +08:00
|
|
|
invalidGiraffeToyotaDEPRECATED @60;
|
2020-12-22 07:21:15 +08:00
|
|
|
internetConnectivityNeededDEPRECATED @61;
|
2020-11-04 03:02:39 +08:00
|
|
|
whitePandaUnsupportedDEPRECATED @81;
|
2020-12-18 04:29:08 +08:00
|
|
|
commIssueWarningDEPRECATED @83;
|
2020-10-15 06:17:32 +08:00
|
|
|
focusRecoverActiveDEPRECATED @86;
|
|
|
|
neosUpdateRequiredDEPRECATED @88;
|
2020-11-25 05:02:27 +08:00
|
|
|
modelLagWarningDEPRECATED @93;
|
2021-03-26 11:35:12 +08:00
|
|
|
startupOneplusDEPRECATED @82;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# ******* main car state @ 100hz *******
|
|
|
|
# all speeds in m/s
|
|
|
|
|
|
|
|
struct CarState {
|
|
|
|
events @13 :List(CarEvent);
|
|
|
|
|
|
|
|
# car speed
|
|
|
|
vEgo @1 :Float32; # best estimate of speed
|
|
|
|
aEgo @16 :Float32; # best estimate of acceleration
|
|
|
|
vEgoRaw @17 :Float32; # unfiltered speed from CAN sensors
|
|
|
|
yawRate @22 :Float32; # best estimate of yaw rate
|
|
|
|
standstill @18 :Bool;
|
|
|
|
wheelSpeeds @2 :WheelSpeeds;
|
|
|
|
|
|
|
|
# gas pedal, 0.0-1.0
|
|
|
|
gas @3 :Float32; # this is user + computer
|
|
|
|
gasPressed @4 :Bool; # this is user pedal only
|
|
|
|
|
|
|
|
# brake pedal, 0.0-1.0
|
|
|
|
brake @5 :Float32; # this is user pedal only
|
|
|
|
brakePressed @6 :Bool; # this is user pedal only
|
|
|
|
|
|
|
|
# steering wheel
|
2021-02-17 13:09:50 +08:00
|
|
|
steeringAngleDeg @7 :Float32;
|
|
|
|
steeringRateDeg @15 :Float32;
|
2020-05-01 11:42:54 +08:00
|
|
|
steeringTorque @8 :Float32; # TODO: standardize units
|
2019-08-09 06:26:20 +08:00
|
|
|
steeringTorqueEps @27 :Float32; # TODO: standardize units
|
2020-05-01 11:42:54 +08:00
|
|
|
steeringPressed @9 :Bool; # if the user is using the steering wheel
|
|
|
|
steeringRateLimited @29 :Bool; # if the torque is limited by the rate limiter
|
2020-05-01 11:45:05 +08:00
|
|
|
steerWarning @35 :Bool; # temporary steer unavailble
|
|
|
|
steerError @36 :Bool; # permanent steer error
|
2019-12-06 08:46:16 +08:00
|
|
|
stockAeb @30 :Bool;
|
2019-12-12 03:35:08 +08:00
|
|
|
stockFcw @31 :Bool;
|
2020-02-25 07:48:11 +08:00
|
|
|
espDisabled @32 :Bool;
|
2019-06-14 03:06:15 +08:00
|
|
|
|
|
|
|
# cruise state
|
|
|
|
cruiseState @10 :CruiseState;
|
|
|
|
|
|
|
|
# gear
|
|
|
|
gearShifter @14 :GearShifter;
|
|
|
|
|
|
|
|
# button presses
|
|
|
|
buttonEvents @11 :List(ButtonEvent);
|
|
|
|
leftBlinker @20 :Bool;
|
|
|
|
rightBlinker @21 :Bool;
|
|
|
|
genericToggle @23 :Bool;
|
|
|
|
|
|
|
|
# lock info
|
|
|
|
doorOpen @24 :Bool;
|
|
|
|
seatbeltUnlatched @25 :Bool;
|
2019-06-22 07:56:57 +08:00
|
|
|
canValid @26 :Bool;
|
2019-06-14 03:06:15 +08:00
|
|
|
|
2019-10-02 04:58:17 +08:00
|
|
|
# clutch (manual transmission only)
|
|
|
|
clutchPressed @28 :Bool;
|
|
|
|
|
2019-06-14 03:06:15 +08:00
|
|
|
# which packets this state came from
|
|
|
|
canMonoTimes @12: List(UInt64);
|
2020-03-28 07:11:02 +08:00
|
|
|
|
2020-03-05 03:53:39 +08:00
|
|
|
# blindspot sensors
|
2020-03-05 06:43:46 +08:00
|
|
|
leftBlindspot @33 :Bool; # Is there something blocking the left lane change
|
|
|
|
rightBlindspot @34 :Bool; # Is there something blocking the right lane change
|
2019-06-14 03:06:15 +08:00
|
|
|
|
|
|
|
struct WheelSpeeds {
|
|
|
|
# optional wheel speeds
|
|
|
|
fl @0 :Float32;
|
|
|
|
fr @1 :Float32;
|
|
|
|
rl @2 :Float32;
|
|
|
|
rr @3 :Float32;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct CruiseState {
|
|
|
|
enabled @0 :Bool;
|
|
|
|
speed @1 :Float32;
|
|
|
|
available @2 :Bool;
|
|
|
|
speedOffset @3 :Float32;
|
|
|
|
standstill @4 :Bool;
|
2020-06-16 04:20:04 +08:00
|
|
|
nonAdaptive @5 :Bool;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
enum GearShifter {
|
|
|
|
unknown @0;
|
|
|
|
park @1;
|
|
|
|
drive @2;
|
|
|
|
neutral @3;
|
|
|
|
reverse @4;
|
|
|
|
sport @5;
|
|
|
|
low @6;
|
|
|
|
brake @7;
|
2019-10-04 06:32:53 +08:00
|
|
|
eco @8;
|
|
|
|
manumatic @9;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# send on change
|
|
|
|
struct ButtonEvent {
|
|
|
|
pressed @0 :Bool;
|
|
|
|
type @1 :Type;
|
|
|
|
|
|
|
|
enum Type {
|
|
|
|
unknown @0;
|
|
|
|
leftBlinker @1;
|
|
|
|
rightBlinker @2;
|
|
|
|
accelCruise @3;
|
|
|
|
decelCruise @4;
|
|
|
|
cancel @5;
|
|
|
|
altButton1 @6;
|
|
|
|
altButton2 @7;
|
|
|
|
altButton3 @8;
|
2019-10-04 06:32:53 +08:00
|
|
|
setCruise @9;
|
|
|
|
resumeCruise @10;
|
|
|
|
gapAdjustCruise @11;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
}
|
2021-02-04 11:56:19 +08:00
|
|
|
|
|
|
|
errorsDEPRECATED @0 :List(CarEvent.EventName);
|
2021-05-19 07:55:45 +08:00
|
|
|
brakeLightsDEPRECATED @19 :Bool;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# ******* radar state @ 20hz *******
|
|
|
|
|
|
|
|
struct RadarData @0x888ad6581cf0aacb {
|
|
|
|
errors @0 :List(Error);
|
|
|
|
points @1 :List(RadarPoint);
|
|
|
|
|
|
|
|
# which packets this state came from
|
|
|
|
canMonoTimes @2 :List(UInt64);
|
|
|
|
|
|
|
|
enum Error {
|
2019-06-15 10:05:45 +08:00
|
|
|
canError @0;
|
2019-06-14 03:06:15 +08:00
|
|
|
fault @1;
|
|
|
|
wrongConfig @2;
|
|
|
|
}
|
|
|
|
|
|
|
|
# similar to LiveTracks
|
|
|
|
# is one timestamp valid for all? I think so
|
|
|
|
struct RadarPoint {
|
|
|
|
trackId @0 :UInt64; # no trackId reuse
|
|
|
|
|
|
|
|
# these 3 are the minimum required
|
|
|
|
dRel @1 :Float32; # m from the front bumper of the car
|
|
|
|
yRel @2 :Float32; # m
|
|
|
|
vRel @3 :Float32; # m/s
|
|
|
|
|
|
|
|
# these are optional and valid if they are not NaN
|
|
|
|
aRel @4 :Float32; # m/s^2
|
|
|
|
yvRel @5 :Float32; # m/s
|
|
|
|
|
|
|
|
# some radars flag measurements VS estimates
|
|
|
|
measured @6 :Bool;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# ******* car controls @ 100hz *******
|
|
|
|
|
|
|
|
struct CarControl {
|
|
|
|
# must be true for any actuator commands to work
|
|
|
|
enabled @0 :Bool;
|
|
|
|
active @7 :Bool;
|
|
|
|
|
|
|
|
actuators @6 :Actuators;
|
|
|
|
|
|
|
|
cruiseControl @4 :CruiseControl;
|
|
|
|
hudControl @5 :HUDControl;
|
|
|
|
|
|
|
|
struct Actuators {
|
|
|
|
# range from 0.0 - 1.0
|
|
|
|
gas @0: Float32;
|
|
|
|
brake @1: Float32;
|
|
|
|
# range from -1.0 - 1.0
|
|
|
|
steer @2: Float32;
|
2021-02-17 13:09:50 +08:00
|
|
|
steeringAngleDeg @3: Float32;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct CruiseControl {
|
|
|
|
cancel @0: Bool;
|
|
|
|
override @1: Bool;
|
|
|
|
speedOverride @2: Float32;
|
|
|
|
accelOverride @3: Float32;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct HUDControl {
|
|
|
|
speedVisible @0: Bool;
|
|
|
|
setSpeed @1: Float32;
|
|
|
|
lanesVisible @2: Bool;
|
|
|
|
leadVisible @3: Bool;
|
|
|
|
visualAlert @4: VisualAlert;
|
|
|
|
audibleAlert @5: AudibleAlert;
|
|
|
|
rightLaneVisible @6: Bool;
|
|
|
|
leftLaneVisible @7: Bool;
|
|
|
|
rightLaneDepart @8: Bool;
|
|
|
|
leftLaneDepart @9: Bool;
|
|
|
|
|
|
|
|
enum VisualAlert {
|
|
|
|
# these are the choices from the Honda
|
|
|
|
# map as good as you can for your car
|
|
|
|
none @0;
|
|
|
|
fcw @1;
|
|
|
|
steerRequired @2;
|
|
|
|
brakePressed @3;
|
|
|
|
wrongGear @4;
|
|
|
|
seatbeltUnbuckled @5;
|
|
|
|
speedTooHigh @6;
|
2019-10-02 05:06:48 +08:00
|
|
|
ldw @7;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
enum AudibleAlert {
|
|
|
|
none @0;
|
|
|
|
chimeEngage @1;
|
|
|
|
chimeDisengage @2;
|
|
|
|
chimeError @3;
|
|
|
|
chimeWarning1 @4;
|
|
|
|
chimeWarning2 @5;
|
|
|
|
chimeWarningRepeat @6;
|
|
|
|
chimePrompt @7;
|
2020-04-22 06:02:30 +08:00
|
|
|
chimeWarning2Repeat @8;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
}
|
2021-02-04 11:56:19 +08:00
|
|
|
|
|
|
|
gasDEPRECATED @1 :Float32;
|
|
|
|
brakeDEPRECATED @2 :Float32;
|
|
|
|
steeringTorqueDEPRECATED @3 :Float32;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# ****** car param ******
|
|
|
|
|
|
|
|
struct CarParams {
|
|
|
|
carName @0 :Text;
|
|
|
|
carFingerprint @1 :Text;
|
2021-04-20 17:57:09 +08:00
|
|
|
fuzzyFingerprint @55 :Bool;
|
2019-06-14 03:06:15 +08:00
|
|
|
|
|
|
|
enableGasInterceptor @2 :Bool;
|
|
|
|
enableCruise @3 :Bool;
|
|
|
|
enableCamera @4 :Bool;
|
|
|
|
enableDsu @5 :Bool; # driving support unit
|
|
|
|
enableApgs @6 :Bool; # advanced parking guidance system
|
2021-04-25 15:03:28 +08:00
|
|
|
enableBsm @56 :Bool; # blind spot monitoring
|
2019-06-14 03:06:15 +08:00
|
|
|
|
|
|
|
minEnableSpeed @7 :Float32;
|
|
|
|
minSteerSpeed @8 :Float32;
|
2021-02-17 13:09:50 +08:00
|
|
|
maxSteeringAngleDeg @54 :Float32;
|
2019-06-28 07:49:27 +08:00
|
|
|
safetyModel @9 :SafetyModel;
|
2019-11-20 12:50:25 +08:00
|
|
|
safetyModelPassive @42 :SafetyModel = silent;
|
2019-06-14 03:06:15 +08:00
|
|
|
safetyParam @10 :Int16;
|
|
|
|
|
|
|
|
steerMaxBP @11 :List(Float32);
|
|
|
|
steerMaxV @12 :List(Float32);
|
|
|
|
gasMaxBP @13 :List(Float32);
|
|
|
|
gasMaxV @14 :List(Float32);
|
|
|
|
brakeMaxBP @15 :List(Float32);
|
|
|
|
brakeMaxV @16 :List(Float32);
|
|
|
|
|
|
|
|
# things about the car in the manual
|
2021-03-15 20:42:12 +08:00
|
|
|
mass @17 :Float32; # [kg] curb weight: all fluids no cargo
|
|
|
|
wheelbase @18 :Float32; # [m] distance from rear axle to front axle
|
|
|
|
centerToFront @19 :Float32; # [m] distance from center of mass to front axle
|
|
|
|
steerRatio @20 :Float32; # [] ratio of steering wheel angle to front wheel angle
|
|
|
|
steerRatioRear @21 :Float32; # [] ratio of steering wheel angle to rear wheel angle (usually 0)
|
2019-06-14 03:06:15 +08:00
|
|
|
|
|
|
|
# things we can derive
|
|
|
|
rotationalInertia @22 :Float32; # [kg*m2] body rotational inertia
|
|
|
|
tireStiffnessFront @23 :Float32; # [N/rad] front tire coeff of stiff
|
|
|
|
tireStiffnessRear @24 :Float32; # [N/rad] rear tire coeff of stiff
|
|
|
|
|
|
|
|
longitudinalTuning @25 :LongitudinalPIDTuning;
|
2020-01-19 07:51:34 +08:00
|
|
|
lateralParams @48 :LateralParams;
|
2019-06-14 03:06:15 +08:00
|
|
|
lateralTuning :union {
|
|
|
|
pid @26 :LateralPIDTuning;
|
|
|
|
indi @27 :LateralINDITuning;
|
2019-07-25 07:39:26 +08:00
|
|
|
lqr @40 :LateralLQRTuning;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
steerLimitAlert @28 :Bool;
|
2019-12-13 06:05:12 +08:00
|
|
|
steerLimitTimer @47 :Float32; # time before steerLimitAlert is issued
|
2019-06-14 03:06:15 +08:00
|
|
|
|
|
|
|
vEgoStopping @29 :Float32; # Speed at which the car goes into stopping state
|
|
|
|
directAccelControl @30 :Bool; # Does the car have direct accel control or just gas/brake
|
|
|
|
stoppingControl @31 :Bool; # Does the car allows full control even at lows speeds when stopping
|
|
|
|
startAccel @32 :Float32; # Required acceleraton to overcome creep braking
|
|
|
|
steerRateCost @33 :Float32; # Lateral MPC cost on steering rate
|
|
|
|
steerControlType @34 :SteerControlType;
|
|
|
|
radarOffCan @35 :Bool; # True when radar objects aren't visible on CAN
|
2020-12-04 02:49:32 +08:00
|
|
|
minSpeedCan @51 :Float32; # Minimum vehicle speed from CAN (below this value drops to 0)
|
2020-12-11 20:56:49 +08:00
|
|
|
stoppingBrakeRate @52 :Float32; # brake_travel/s while trying to stop
|
2020-12-16 19:19:28 +08:00
|
|
|
startingBrakeRate @53 :Float32; # brake_travel/s while releasing on restart
|
2019-06-14 03:06:15 +08:00
|
|
|
|
|
|
|
steerActuatorDelay @36 :Float32; # Steering wheel actuator delay in seconds
|
|
|
|
openpilotLongitudinalControl @37 :Bool; # is openpilot doing the longitudinal control?
|
|
|
|
carVin @38 :Text; # VIN number queried during fingerprinting
|
2019-09-06 05:10:53 +08:00
|
|
|
dashcamOnly @41: Bool;
|
2019-10-02 04:58:17 +08:00
|
|
|
transmissionType @43 :TransmissionType;
|
2019-11-13 04:43:47 +08:00
|
|
|
carFw @44 :List(CarFw);
|
2021-04-20 17:57:09 +08:00
|
|
|
|
2019-11-22 16:14:29 +08:00
|
|
|
radarTimeStep @45: Float32 = 0.05; # time delta between radar updates, 20Hz is very standard
|
2019-12-03 10:37:52 +08:00
|
|
|
communityFeature @46: Bool; # true if a community maintained feature is detected
|
2020-01-31 06:39:14 +08:00
|
|
|
fingerprintSource @49: FingerprintSource;
|
2020-03-31 08:53:01 +08:00
|
|
|
networkLocation @50 :NetworkLocation; # Where Panda/C2 is integrated into the car's CAN network
|
2019-06-14 03:06:15 +08:00
|
|
|
|
2020-01-19 07:51:34 +08:00
|
|
|
struct LateralParams {
|
|
|
|
torqueBP @0 :List(Int32);
|
|
|
|
torqueV @1 :List(Int32);
|
|
|
|
}
|
|
|
|
|
2019-06-14 03:06:15 +08:00
|
|
|
struct LateralPIDTuning {
|
|
|
|
kpBP @0 :List(Float32);
|
|
|
|
kpV @1 :List(Float32);
|
|
|
|
kiBP @2 :List(Float32);
|
|
|
|
kiV @3 :List(Float32);
|
|
|
|
kf @4 :Float32;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct LongitudinalPIDTuning {
|
|
|
|
kpBP @0 :List(Float32);
|
|
|
|
kpV @1 :List(Float32);
|
|
|
|
kiBP @2 :List(Float32);
|
|
|
|
kiV @3 :List(Float32);
|
|
|
|
deadzoneBP @4 :List(Float32);
|
|
|
|
deadzoneV @5 :List(Float32);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct LateralINDITuning {
|
2021-01-07 22:55:56 +08:00
|
|
|
outerLoopGainBP @4 :List(Float32);
|
|
|
|
outerLoopGainV @5 :List(Float32);
|
|
|
|
innerLoopGainBP @6 :List(Float32);
|
|
|
|
innerLoopGainV @7 :List(Float32);
|
|
|
|
timeConstantBP @8 :List(Float32);
|
|
|
|
timeConstantV @9 :List(Float32);
|
|
|
|
actuatorEffectivenessBP @10 :List(Float32);
|
|
|
|
actuatorEffectivenessV @11 :List(Float32);
|
|
|
|
|
|
|
|
outerLoopGainDEPRECATED @0 :Float32;
|
|
|
|
innerLoopGainDEPRECATED @1 :Float32;
|
|
|
|
timeConstantDEPRECATED @2 :Float32;
|
|
|
|
actuatorEffectivenessDEPRECATED @3 :Float32;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
|
2019-07-25 07:39:26 +08:00
|
|
|
struct LateralLQRTuning {
|
|
|
|
scale @0 :Float32;
|
|
|
|
ki @1 :Float32;
|
|
|
|
dcGain @2 :Float32;
|
|
|
|
|
|
|
|
# State space system
|
|
|
|
a @3 :List(Float32);
|
|
|
|
b @4 :List(Float32);
|
|
|
|
c @5 :List(Float32);
|
|
|
|
|
|
|
|
k @6 :List(Float32); # LQR gain
|
|
|
|
l @7 :List(Float32); # Kalman gain
|
|
|
|
}
|
|
|
|
|
2019-06-28 07:49:27 +08:00
|
|
|
enum SafetyModel {
|
2019-11-20 12:50:25 +08:00
|
|
|
silent @0;
|
2019-12-21 07:27:37 +08:00
|
|
|
hondaNidec @1;
|
2019-06-14 03:06:15 +08:00
|
|
|
toyota @2;
|
|
|
|
elm327 @3;
|
|
|
|
gm @4;
|
2019-12-21 07:27:37 +08:00
|
|
|
hondaBoschGiraffe @5;
|
2019-06-14 03:06:15 +08:00
|
|
|
ford @6;
|
|
|
|
cadillac @7;
|
|
|
|
hyundai @8;
|
|
|
|
chrysler @9;
|
|
|
|
tesla @10;
|
|
|
|
subaru @11;
|
2019-09-09 05:15:48 +08:00
|
|
|
gmPassive @12;
|
2019-09-10 07:03:40 +08:00
|
|
|
mazda @13;
|
|
|
|
nissan @14;
|
2019-10-03 05:50:59 +08:00
|
|
|
volkswagen @15;
|
2019-10-03 04:41:45 +08:00
|
|
|
toyotaIpas @16;
|
|
|
|
allOutput @17;
|
|
|
|
gmAscm @18;
|
2019-12-21 07:27:37 +08:00
|
|
|
noOutput @19; # like silent but without silent CAN TXs
|
|
|
|
hondaBoschHarness @20;
|
2019-12-29 15:28:38 +08:00
|
|
|
volkswagenPq @21;
|
2020-02-28 02:32:17 +08:00
|
|
|
subaruLegacy @22; # pre-Global platform
|
2020-06-13 08:27:20 +08:00
|
|
|
hyundaiLegacy @23;
|
2020-07-28 04:56:05 +08:00
|
|
|
hyundaiCommunity @24;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
enum SteerControlType {
|
|
|
|
torque @0;
|
|
|
|
angle @1;
|
|
|
|
}
|
2019-10-02 04:58:17 +08:00
|
|
|
|
|
|
|
enum TransmissionType {
|
|
|
|
unknown @0;
|
2020-03-31 08:53:01 +08:00
|
|
|
automatic @1; # Traditional auto, including DSG
|
|
|
|
manual @2; # True "stick shift" only
|
|
|
|
direct @3; # Electric vehicle or other direct drive
|
2019-10-02 04:58:17 +08:00
|
|
|
}
|
2019-11-13 04:43:47 +08:00
|
|
|
|
|
|
|
struct CarFw {
|
|
|
|
ecu @0 :Ecu;
|
2019-12-17 09:02:19 +08:00
|
|
|
fwVersion @1 :Data;
|
|
|
|
address @2: UInt32;
|
|
|
|
subAddress @3: UInt8;
|
2019-11-13 04:43:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
enum Ecu {
|
|
|
|
eps @0;
|
|
|
|
esp @1;
|
|
|
|
fwdRadar @2;
|
|
|
|
fwdCamera @3;
|
2019-12-17 09:02:19 +08:00
|
|
|
engine @4;
|
|
|
|
unknown @5;
|
2020-02-19 04:59:42 +08:00
|
|
|
transmission @8; # Transmission Control Module
|
|
|
|
srs @9; # airbag
|
|
|
|
gateway @10; # can gateway
|
|
|
|
hud @11; # heads up display
|
|
|
|
combinationMeter @12; # instrument cluster
|
2019-12-17 09:02:19 +08:00
|
|
|
|
|
|
|
# Toyota only
|
|
|
|
dsu @6;
|
|
|
|
apgs @7;
|
2020-02-19 04:59:42 +08:00
|
|
|
|
|
|
|
# Honda only
|
|
|
|
vsa @13; # Vehicle Stability Assist
|
|
|
|
programmedFuelInjection @14;
|
|
|
|
electricBrakeBooster @15;
|
|
|
|
shiftByWire @16;
|
2019-11-13 04:43:47 +08:00
|
|
|
}
|
2020-01-31 06:39:14 +08:00
|
|
|
|
|
|
|
enum FingerprintSource {
|
|
|
|
can @0;
|
|
|
|
fw @1;
|
2020-02-13 03:56:40 +08:00
|
|
|
fixed @2;
|
2020-01-31 06:39:14 +08:00
|
|
|
}
|
2020-03-31 08:53:01 +08:00
|
|
|
|
|
|
|
enum NetworkLocation {
|
|
|
|
fwdCamera @0; # Standard/default integration at LKAS camera
|
|
|
|
gateway @1; # Integration at vehicle's CAN gateway
|
|
|
|
}
|
2021-02-04 11:56:19 +08:00
|
|
|
|
|
|
|
isPandaBlackDEPRECATED @39: Bool;
|
2019-06-14 03:06:15 +08:00
|
|
|
}
|