![]() |
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.
|
Abstract State Implementation for Autonomy State Machine. More...
#include "../AutonomyLogging.h"
Go to the source code of this file.
Classes | |
class | statemachine::State |
The abstract state class. All states inherit from this class. More... | |
Namespaces | |
namespace | statemachine |
Namespace containing all state machine related classes. | |
Enumerations | |
enum class | statemachine::States { eIdle , eNavigating , eSearchPattern , eApproachingMarker , eApproachingObject , eVerifyingPosition , eVerifyingMarker , eVerifyingObject , eAvoidance , eReversing , eStuck , NUM_STATES } |
The states that the state machine can be in. More... | |
enum class | statemachine::Event { eStart , eReachedGpsCoordinate , eReachedMarker , eReachedObject , eMarkerSeen , eObjectSeen , eMarkerUnseen , eObjectUnseen , eVerifyingComplete , eVerifyingFailed , eAbort , eRestart , eObstacleAvoidance , eEndObstacleAvoidance , eNoWaypoint , eNewWaypoint , eReverse , eReverseComplete , eSearchFailed , eStuck , eUnstuck , NUM_EVENTS } |
The events that can be triggered in the state machine. More... | |
Functions | |
std::string | statemachine::StateToString (States eState) |
Converts a state object to a string. | |
Abstract State Implementation for Autonomy State Machine.