![]() |
Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
|
Files | |
PIDController.cpp | |
Implements the PIDController class. Design is based off of https://github.com/tekdemo/MiniPID and https://github.com/wpilibsuite/allwpilib/blob/b3eb64b0f774130833e6b5f8c18cd61403f420f3/wpimath/src/main/native/cpp/controller/PIDController.cpp. | |
PIDController.h | |
Defines the PIDController class. | |
StanleyController.cpp | |
Implements the StanleyController class within the. | |
StanleyController.h | |
Defines the StanleyController class within the controllers namespace. | |
The Controllers directory is dedicated to storing C++ files that define and implement advanced machine and motion controllers. Specifically, it contains files related to PID (Proportional-Integral-Derivative), LQR (Linear Quadratic Regulator), MPC (Model Predictive Controller), and the Stanley Controller.
The Controllers directory focuses on the logic and computational aspects of the project, providing implementations for a range of control algorithms and data structures.
To maintain a well-organized directory, please adhere to the following guidelines:
In the Controllers directory, you can expect to find files related to the following categories:
Each controller should have a .h
and a .cpp
file, not .hpp
.
Happy coding and control system development!