Skip to content

Commit

Permalink
reduce wheel touch threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
jyoung8607 committed Dec 28, 2023
1 parent 6df6d61 commit 4c07de5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion board/safety/safety_volkswagen_mqb.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const SteeringLimits VOLKSWAGEN_MQB_STEERING_LIMITS = {
.max_rt_interval = 250000, // 250ms between real time checks
.max_rate_up = 10, // 5.0 Nm/s RoC limit (EPS rack has own soft-limit of 5.0 Nm/s)
.max_rate_down = 10, // 5.0 Nm/s RoC limit (EPS rack has own soft-limit of 5.0 Nm/s)
.driver_torque_allowance = 80,
.driver_torque_allowance = 60,
.driver_torque_factor = 3,
.type = TorqueDriverLimited,
};
Expand Down
2 changes: 1 addition & 1 deletion tests/safety/test_volkswagen_mqb.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class TestVolkswagenMqbSafety(common.PandaCarSafetyTest, common.DriverTorqueStee
MAX_RT_DELTA = 188
RT_INTERVAL = 250000

DRIVER_TORQUE_ALLOWANCE = 80
DRIVER_TORQUE_ALLOWANCE = 60
DRIVER_TORQUE_FACTOR = 3

@classmethod
Expand Down

0 comments on commit 4c07de5

Please sign in to comment.