|
static void | init () |
|
static bool | ContainsKey (llvm::StringRef key) |
| Determines whether the given key is in this table. More...
|
|
static std::vector< std::string > | GetKeys (int types=0) |
|
static void | SetPersistent (llvm::StringRef key) |
| Makes a key's value persistent through program restarts. More...
|
|
static void | ClearPersistent (llvm::StringRef key) |
| Stop making a key's value persistent through program restarts. More...
|
|
static bool | IsPersistent (llvm::StringRef key) |
| Returns whether the value is persistent through program restarts. More...
|
|
static void | SetFlags (llvm::StringRef key, unsigned int flags) |
| Sets flags on the specified key in this table. More...
|
|
static void | ClearFlags (llvm::StringRef key, unsigned int flags) |
| Clears flags on the specified key in this table. More...
|
|
static unsigned int | GetFlags (llvm::StringRef key) |
| Returns the flags for the specified key. More...
|
|
static void | Delete (llvm::StringRef key) |
| Deletes the specified key in this table. More...
|
|
static void | PutData (llvm::StringRef key, Sendable *data) |
| Maps the specified key to the specified value in this table. More...
|
|
static void | PutData (NamedSendable *value) |
| Maps the specified key (where the key is the name of the SmartDashboardNamedData to the specified value in this table. More...
|
|
static Sendable * | GetData (llvm::StringRef keyName) |
| Returns the value at the specified key. More...
|
|
static bool | PutBoolean (llvm::StringRef keyName, bool value) |
| Maps the specified key to the specified value in this table. More...
|
|
static bool | SetDefaultBoolean (llvm::StringRef key, bool defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static bool | GetBoolean (llvm::StringRef keyName, bool defaultValue) |
| Returns the value at the specified key. More...
|
|
static bool | PutNumber (llvm::StringRef keyName, double value) |
| Maps the specified key to the specified value in this table. More...
|
|
static bool | SetDefaultNumber (llvm::StringRef key, double defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static double | GetNumber (llvm::StringRef keyName, double defaultValue) |
| Returns the value at the specified key. More...
|
|
static bool | PutString (llvm::StringRef keyName, llvm::StringRef value) |
| Maps the specified key to the specified value in this table. More...
|
|
static bool | SetDefaultString (llvm::StringRef key, llvm::StringRef defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::string | GetString (llvm::StringRef keyName, llvm::StringRef defaultValue) |
| Returns the value at the specified key. More...
|
|
static bool | PutBooleanArray (llvm::StringRef key, llvm::ArrayRef< int > value) |
| Put a boolean array in the table. More...
|
|
static bool | SetDefaultBooleanArray (llvm::StringRef key, llvm::ArrayRef< int > defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::vector< int > | GetBooleanArray (llvm::StringRef key, llvm::ArrayRef< int > defaultValue) |
| Returns the boolean array the key maps to. More...
|
|
static bool | PutNumberArray (llvm::StringRef key, llvm::ArrayRef< double > value) |
| Put a number array in the table. More...
|
|
static bool | SetDefaultNumberArray (llvm::StringRef key, llvm::ArrayRef< double > defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::vector< double > | GetNumberArray (llvm::StringRef key, llvm::ArrayRef< double > defaultValue) |
| Returns the number array the key maps to. More...
|
|
static bool | PutStringArray (llvm::StringRef key, llvm::ArrayRef< std::string > value) |
| Put a string array in the table. More...
|
|
static bool | SetDefaultStringArray (llvm::StringRef key, llvm::ArrayRef< std::string > defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::vector< std::string > | GetStringArray (llvm::StringRef key, llvm::ArrayRef< std::string > defaultValue) |
| Returns the string array the key maps to. More...
|
|
static bool | PutRaw (llvm::StringRef key, llvm::StringRef value) |
| Put a raw value (byte array) in the table. More...
|
|
static bool | SetDefaultRaw (llvm::StringRef key, llvm::StringRef defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::string | GetRaw (llvm::StringRef key, llvm::StringRef defaultValue) |
| Returns the raw value (byte array) the key maps to. More...
|
|
static bool | PutValue (llvm::StringRef keyName, std::shared_ptr< nt::Value > value) |
| Maps the specified key to the specified complex value (such as an array) in this table. More...
|
|
static bool | SetDefaultValue (llvm::StringRef key, std::shared_ptr< nt::Value > defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::shared_ptr< nt::Value > | GetValue (llvm::StringRef keyName) |
| Retrieves the complex value (such as an array) in this table into the complex data object. More...
|
|
static int | GetDefaultSolenoidModule () |
|
static bool | CheckSolenoidModule (int moduleNumber) |
| Check that the solenoid module number is valid. More...
|
|
static bool | CheckDigitalChannel (int channel) |
| Check that the digital channel number is valid. More...
|
|
static bool | CheckRelayChannel (int channel) |
| Check that the relay channel number is valid. More...
|
|
static bool | CheckPWMChannel (int channel) |
| Check that the digital channel number is valid. More...
|
|
static bool | CheckAnalogInputChannel (int channel) |
| Check that the analog input number is value. More...
|
|
static bool | CheckAnalogOutputChannel (int channel) |
| Check that the analog output number is valid. More...
|
|
static bool | CheckSolenoidChannel (int channel) |
| Verify that the solenoid channel number is within limits. More...
|
|
static bool | CheckPDPChannel (int channel) |
| Verify that the power distribution channel number is within limits. More...
|
|
static void | SetGlobalError (Error::Code code, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) |
|
static void | SetGlobalWPIError (llvm::StringRef errorMessage, llvm::StringRef contextMessage, llvm::StringRef filename, llvm::StringRef function, int lineNumber) |
|
static Error & | GetGlobalError () |
| Retrieve the current global error.
|
|
|
| SensorBase (const SensorBase &)=delete |
|
SensorBase & | operator= (const SensorBase &)=delete |
|
| 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...
|
|
static const int | kDigitalChannels = HAL_GetNumDigitalChannels() |
|
static const int | kAnalogInputs = HAL_GetNumAnalogInputs() |
|
static const int | kAnalogOutputs |
|
static const int | kSolenoidChannels = HAL_GetNumSolenoidChannels() |
|
static const int | kSolenoidModules = HAL_GetNumPCMModules() |
|
static const int | kPwmChannels = HAL_GetNumPWMChannels() |
|
static const int | kRelayChannels = HAL_GetNumRelayHeaders() |
|
static const int | kPDPChannels = HAL_GetNumPDPChannels() |
|
Error | m_error |
|
static hal::priority_mutex | _globalErrorMutex |
|
static Error | _globalError |
|