Skip to content

Commit

Permalink
manualfeedforward gonna make me lose my mind
Browse files Browse the repository at this point in the history
  • Loading branch information
schen479 committed Dec 11, 2024
1 parent e441c8e commit bce92a6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static class Params {
// feedforward parameters (in tick units)
public double kS = 1.4023140718295783;
public double kV = 0.12807128175751004;
public double kA = 0.1;
public double kA = 0.065;

// path profile parameters (in inches)
public double maxWheelVel = 50;
Expand All @@ -90,9 +90,9 @@ public static class Params {
public double maxAngAccel = Math.PI;

// path controller gains
public double axialGain = 0.0;
public double lateralGain = 0.0;
public double headingGain = 0.0; // shared with turn
public double axialGain = 1.0;
public double lateralGain = 1.0;
public double headingGain = 1.0; // shared with turn

public double axialVelGain = 0.0;
public double lateralVelGain = 0.0;
Expand Down

0 comments on commit bce92a6

Please sign in to comment.