Skip to content

Commit

Permalink
Fix kv being displayed where ks should be (wpilibsuite#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oblarg authored Feb 22, 2022
1 parent cfd9eb4 commit e799b96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sysid-application/src/main/native/cpp/view/Analyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ void Analyzer::CollectFeedforwardGains(float beginX, float beginY) {

void Analyzer::DisplayFeedforwardGains(float beginX, float beginY) {
SetPosition(beginX, beginY, 0, 0);
DisplayGain("Ks", &m_ff[1]);
DisplayGain("Ks", &m_ff[0]);

SetPosition(beginX, beginY, 0, 1);
DisplayGain("Kv", &m_ff[1]);
Expand Down

0 comments on commit e799b96

Please sign in to comment.