Skip to content

Commit

Permalink
go back
Browse files Browse the repository at this point in the history
  • Loading branch information
CL16gtgh committed Jun 1, 2024
1 parent 3dfb64f commit 124bdaf
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,14 +160,14 @@ CASEConfiguration case_config = {
.yaw_pid_p = 1.5,
.yaw_pid_i = 0.25,
.yaw_pid_d = 0.0,
.tcs_pid_p_lowerBound_front = 80.0, // if tcs_pid_p_lowerBound_front > tcs_pid_p_upperBound_front, inverse relationship, no error
.tcs_pid_p_upperBound_front = 60.0,
.tcs_pid_p_lowerBound_rear = 35.0,
.tcs_pid_p_upperBound_rear = 47.0,
.tcs_pid_p_lowerBound_front = 55.0, // if tcs_pid_p_lowerBound_front > tcs_pid_p_upperBound_front, inverse relationship, no error
.tcs_pid_p_upperBound_front = 45.0,
.tcs_pid_p_lowerBound_rear = 32.0,
.tcs_pid_p_upperBound_rear = 45.0,
.tcs_pid_i = 0.0,
.tcs_pid_d = 0.0,
.useLaunch = true,
.usePIDTV = false,
.useLaunch = false,
.usePIDTV = true,
.useTCSLimitedYawPID = true,
.useNormalForce = true,
.useTractionControl = true,
Expand Down Expand Up @@ -206,8 +206,8 @@ CASEConfiguration case_config = {
.TCSGenLeftRightDiffUpperBound = 20, // N-m
.TCSWheelSteerLowerBound = 2, // Deg
.TCSWheelSteerUpperBound = 25, // Deg
.useRPM_TCS_GainSchedule = true, // If both are false, then P values defaults to lower bound per axle
.useNL_TCS_GainSchedule = false,
.useRPM_TCS_GainSchedule = false, // If both are false, then P values defaults to lower bound per axle
.useNL_TCS_GainSchedule = true,
.TCS_NL_startBoundPerc_FrontAxle = 0.5,
.TCS_NL_endBoundPerc_FrontAxle = 0.4,
.TCS_NL_startBoundPerc_RearAxle = 0.5,
Expand Down

0 comments on commit 124bdaf

Please sign in to comment.