Skip to content

Commit

Permalink
Merge branch 'commaai:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
rav4kumar authored Apr 10, 2024
2 parents c175274 + db1359e commit bdb09f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion car.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,6 @@ struct CarParams {

notCar @66 :Bool; # flag for non-car robotics platforms

enableGasInterceptor @2 :Bool;
pcmCruise @3 :Bool; # is openpilot's state tied to the PCM's cruise state?
enableDsu @5 :Bool; # driving support unit
enableBsm @56 :Bool; # blind spot monitoring
Expand Down Expand Up @@ -678,6 +677,7 @@ struct CarParams {
gateway @1; # Integration at vehicle's CAN gateway
}

enableGasInterceptorDEPRECATED @2 :Bool;
enableCameraDEPRECATED @4 :Bool;
enableApgsDEPRECATED @6 :Bool;
steerRateCostDEPRECATED @33 :Float32;
Expand Down
6 changes: 3 additions & 3 deletions log.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -905,8 +905,8 @@ struct ModelDataV2 {
# Model perceived motion
temporalPose @21 :Pose;

navEnabled @22 :Bool;
locationMonoTime @24 :UInt64;
navEnabledDEPRECATED @22 :Bool;
locationMonoTimeDEPRECATED @24 :UInt64;

# e2e lateral planner
lateralPlannerSolutionDEPRECATED @25: LateralPlannerSolution;
Expand Down Expand Up @@ -2276,7 +2276,6 @@ struct Event {
liveLocationKalman @72 :LiveLocationKalman;
modelV2 @75 :ModelDataV2;
driverStateV2 @92 :DriverStateV2;
navModel @104 :NavModelData;

# camera stuff, each camera state has a matching encode idx
roadCameraState @2 :FrameData;
Expand Down Expand Up @@ -2380,5 +2379,6 @@ struct Event {
driverStateDEPRECATED @59 :DriverStateDEPRECATED;
sensorEventsDEPRECATED @11 :List(SensorEventData);
lateralPlanDEPRECATED @64 :LateralPlan;
navModelDEPRECATED @104 :NavModelData;
}
}
2 changes: 0 additions & 2 deletions services.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ def __init__(self, port: int, should_log: bool, frequency: float, decimation: Op
"navInstruction": (True, 1., 10),
"navRoute": (True, 0.),
"navThumbnail": (True, 0.),
"navModel": (True, 2., 4.),
"mapRenderState": (True, 2., 1.),
"uiPlan": (True, 20., 40.),
"qRoadEncodeIdx": (False, 20.),
"userFlag": (True, 0., 1),
Expand Down

0 comments on commit bdb09f7

Please sign in to comment.