Enum ErrorCode

Source
#[repr(i32)]
pub enum ErrorCode {
Show 40 variants OK = 0, CAN_MSG_STALE = 1, TxFailed = -1, InvalidParamValue = -2, RxTimeout = -3, TxTimeout = -4, UnexpectedArbId = -5, BufferFull = 6, CAN_OVERFLOW = -6, SensorNotPresent = -7, FirmwareTooOld = -8, CouldNotChangePeriod = -9, GeneralError = -100, SigNotUpdated = -200, NotAllPIDValuesUpdated = -201, GEN_PORT_ERROR = -300, PORT_MODULE_TYPE_MISMATCH = -301, GEN_MODULE_ERROR = -400, MODULE_NOT_INIT_SET_ERROR = -401, MODULE_NOT_INIT_GET_ERROR = -402, WheelRadiusTooSmall = -500, TicksPerRevZero = -501, DistanceBetweenWheelsTooSmall = -502, GainsAreNotSet = -503, IncompatibleMode = -600, InvalidHandle = -601, FeatureRequiresHigherFirm = -700, TalonFeatureRequiresHigherFirm = -701, PulseWidthSensorNotPresent = 10, GeneralWarning = 100, FeatureNotSupported = 101, NotImplemented = 102, FirmVersionCouldNotBeRetrieved = 103, FeaturesNotAvailableYet = 104, ControlModeNotValid = 105, ControlModeNotSupportedYet = 106, AuxiliaryPIDNotSupportedYet = 107, RemoteSensorsNotSupportedYet = 108, MotProfFirmThreshold = 109, MotProfFirmThreshold2 = 110,
}

Variants§

§

OK = 0

No Error - Function executed as expected

§

CAN_MSG_STALE = 1

§

TxFailed = -1

Could not transmit the CAN frame.

§

InvalidParamValue = -2

Caller passed an invalid param

§

RxTimeout = -3

CAN frame has not been received within specified period of time.

§

TxTimeout = -4

Not used.

§

UnexpectedArbId = -5

Specified CAN Id is invalid.

§

BufferFull = 6

Caller attempted to insert data into a buffer that is full.

§

CAN_OVERFLOW = -6

§

SensorNotPresent = -7

Sensor is not present

§

FirmwareTooOld = -8

§

CouldNotChangePeriod = -9

§

GeneralError = -100

User Specified General Error

§

SigNotUpdated = -200

Have not received an value response for signal.

§

NotAllPIDValuesUpdated = -201

§

GEN_PORT_ERROR = -300

§

PORT_MODULE_TYPE_MISMATCH = -301

§

GEN_MODULE_ERROR = -400

§

MODULE_NOT_INIT_SET_ERROR = -401

§

MODULE_NOT_INIT_GET_ERROR = -402

§

WheelRadiusTooSmall = -500

§

TicksPerRevZero = -501

§

DistanceBetweenWheelsTooSmall = -502

§

GainsAreNotSet = -503

§

IncompatibleMode = -600

§

InvalidHandle = -601

Handle does not match stored map of handles

§

FeatureRequiresHigherFirm = -700

§

TalonFeatureRequiresHigherFirm = -701

§

PulseWidthSensorNotPresent = 10

Special Code for “isSensorPresent”

§

GeneralWarning = 100

§

FeatureNotSupported = 101

feature not implement in the API or firmware

§

NotImplemented = 102

feature not implement in the API

§

FirmVersionCouldNotBeRetrieved = 103

§

FeaturesNotAvailableYet = 104

feature will be release in an upcoming release

§

ControlModeNotValid = 105

Current control mode of motor controller not valid for this call

§

ControlModeNotSupportedYet = 106

§

AuxiliaryPIDNotSupportedYet = 107

§

RemoteSensorsNotSupportedYet = 108

§

MotProfFirmThreshold = 109

§

MotProfFirmThreshold2 = 110

Implementations§

Source§

impl ErrorCode

Source

pub fn is_ok(self) -> bool

Returns true if the error code is OK.

Source

pub fn is_err(self) -> bool

Returns true if the error code is not OK.

Source

pub fn or(self, err: ErrorCode) -> ErrorCode

Returns err if self is OK, otherwise returns self. Intended for use by the ctre crate only.

Source

pub fn into_res(self) -> Result<(), ErrorCode>

Returns an Ok if the error code is OK, or an Err otherwise.

Examples found in repository?
examples/simple_robot.rs (line 13)
6fn main() -> ctre::Result<()> {
7    let talon = TalonSRX::new(0);
8    let delay = time::Duration::from_millis(20);
9    talon.config_forward_limit_switch_source(
10        LimitSwitchSource::FeedbackConnector,
11        LimitSwitchNormal::NormallyOpen,
12        10,
13    ).into_res()?;
14    loop {
15        talon.set(ControlMode::PercentOutput, 0.5, DemandType::Neutral, 0.0);
16        thread::sleep(delay);
17        talon.neutral_output();
18        thread::sleep(delay);
19    }
20}

Trait Implementations§

Source§

impl Clone for ErrorCode

Source§

fn clone(&self) -> ErrorCode

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ErrorCode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Display for ErrorCode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Error for ErrorCode

Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl Hash for ErrorCode

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for ErrorCode

Source§

fn eq(&self, other: &ErrorCode) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for ErrorCode

Source§

impl Eq for ErrorCode

Source§

impl StructuralPartialEq for ErrorCode

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.