We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 637d11e commit 65058bcCopy full SHA for 65058bc
selfdrive/controls/lib/latcontrol_model.py
@@ -68,6 +68,6 @@ def update(self, active, CS, CP, VM, params, last_actuators, desired_curvature,
68
model_log.output = output_steer
69
70
check_saturation = (CS.vEgo > 10) and not CS.steeringRateLimited and not CS.steeringPressed
71
- model_log.saturated = pself._check_saturation(self.steer_max - abs(output_steer) < 1e-3, CS)
+ model_log.saturated = self._check_saturation(self.steer_max - abs(output_steer) < 1e-3, CS)
72
73
return output_steer, angle_steers_des, model_log
0 commit comments