|
void | AddCommand (Command *command) |
| Add a command to be scheduled later. More...
|
|
void | AddButton (ButtonScheduler *button) |
|
void | RegisterSubsystem (Subsystem *subsystem) |
| Registers a Subsystem to this Scheduler, so that the Scheduler might know if a default Command needs to be run. More...
|
|
void | Run () |
| Runs a single iteration of the loop. More...
|
|
void | Remove (Command *command) |
| Removes the Command from the Scheduler. More...
|
|
void | RemoveAll () |
|
void | ResetAll () |
| Completely resets the scheduler. More...
|
|
void | SetEnabled (bool enabled) |
|
void | UpdateTable () |
| Update the network tables associated with the Scheduler object on the SmartDashboard.
|
|
std::string | GetSmartDashboardType () const |
|
void | InitTable (std::shared_ptr< nt::NetworkTable > subTable) |
| Initializes a table for this sendable object. More...
|
|
std::string | GetName () const |
|
std::string | GetType () const |
|
| ErrorBase (const ErrorBase &)=delete |
|
ErrorBase & | operator= (const ErrorBase &)=delete |
|
virtual Error & | GetError () |
| Retrieve the current error. More...
|
|
virtual const Error & | GetError () const |
|
virtual void | SetErrnoError (llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) const |
| Set error information associated with a C library call that set an error to the "errno" global variable. More...
|
|
virtual void | SetImaqError (int success, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) const |
| Set the current error information associated from the nivision Imaq API. More...
|
|
virtual void | SetError (Error::Code code, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) const |
| Set the current error information associated with this sensor. More...
|
|
virtual void | SetErrorRange (Error::Code code, int32_t minRange, int32_t maxRange, int32_t requestedValue, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) const |
| Set the current error information associated with this sensor. More...
|
|
virtual void | SetWPIError (llvm::StringRef errorMessage, Error::Code code, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) const |
| Set the current error information associated with this sensor. More...
|
|
virtual void | CloneError (const ErrorBase &rhs) const |
|
virtual void | ClearError () const |
| Clear the current error information associated with this sensor.
|
|
virtual bool | StatusIsFatal () const |
| Check if the current error code represents a fatal error. More...
|
|