1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-07-24 23:21:29 +00:00

changed all LQR references to PID

This commit is contained in:
2021-10-14 18:02:01 -07:00
parent ee9fa3a3d1
commit a452b30fae
5 changed files with 33 additions and 93 deletions

View File

@@ -31,8 +31,8 @@ struct outVector {
std::vector<bool> thrustFiring = std::vector<bool>(length, 0.0);
std::vector<double> LQRx = std::vector<double>(length, 0.0);
std::vector<double> LQRy = std::vector<double>(length, 0.0);
std::vector<double> PIDx = std::vector<double>(length, 0.0);
std::vector<double> PIDy = std::vector<double>(length, 0.0);
};
#endif