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

Initial Pass, still lots of bugs to fix

This commit is contained in:
bpmcgeeney
2021-09-20 10:34:20 -07:00
parent 7080188063
commit 768bcb7964
6 changed files with 121 additions and 44 deletions

View File

@@ -30,6 +30,9 @@ struct outVector {
std::vector<double> servo2 = std::vector<double>(length, 0.0);
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);
};
#endif