Controls - Lane Change Customizations - Nudgeless Lane Change

Enable lane changes without requiring manual steering input.
This commit is contained in:
FrogAi
2024-06-18 12:55:14 -07:00
parent 6e820db364
commit d619bcf360
+2
View File
@@ -79,6 +79,8 @@ class DesireHelper:
if torque_applied:
self.lane_change_wait_timer = frogpilot_toggles.lane_change_delay
torque_applied |= frogpilot_toggles.nudgeless
blindspot_detected = ((carstate.leftBlindspot and self.lane_change_direction == LaneChangeDirection.left) or
(carstate.rightBlindspot and self.lane_change_direction == LaneChangeDirection.right))