mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Also make sure table listeners stop listening in their destructors. This might be better handled by moving the table itself into ITableListener and providing cleanup functionality there. A submodule is used to pull in ntcore. Change-Id: I3031c1a768595cf0f8754c47e15cd423e2dbcce5
1313 lines
39 KiB
C++
1313 lines
39 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) FIRST 2014. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
#include "CANTalon.h"
|
|
#include "WPIErrors.h"
|
|
#include <unistd.h> // usleep
|
|
#include <sstream>
|
|
|
|
/**
|
|
* Constructor for the CANTalon device.
|
|
* @param deviceNumber The CAN ID of the Talon SRX
|
|
*/
|
|
CANTalon::CANTalon(int deviceNumber)
|
|
: m_deviceNumber(deviceNumber),
|
|
m_impl(new CanTalonSRX(deviceNumber)),
|
|
m_safetyHelper(new MotorSafetyHelper(this)) {
|
|
ApplyControlMode(m_controlMode);
|
|
m_impl->SetProfileSlotSelect(m_profile);
|
|
m_isInverted = false;
|
|
}
|
|
/**
|
|
* Constructor for the CANTalon device.
|
|
* @param deviceNumber The CAN ID of the Talon SRX
|
|
* @param controlPeriodMs The period in ms to send the CAN control frame.
|
|
* Period is bounded to [1ms,
|
|
* 95ms].
|
|
*/
|
|
CANTalon::CANTalon(int deviceNumber, int controlPeriodMs)
|
|
: m_deviceNumber(deviceNumber),
|
|
m_impl(new CanTalonSRX(
|
|
deviceNumber,
|
|
controlPeriodMs)) /* bounded underneath to be within [1 ms,95 ms] */
|
|
,
|
|
m_safetyHelper(new MotorSafetyHelper(this)),
|
|
m_profile(0),
|
|
m_controlEnabled(true),
|
|
m_controlMode(kPercentVbus),
|
|
m_setPoint(0) {
|
|
ApplyControlMode(m_controlMode);
|
|
m_impl->SetProfileSlotSelect(m_profile);
|
|
}
|
|
|
|
CANTalon::~CANTalon() {
|
|
if (m_table != nullptr) m_table->RemoveTableListener(this);
|
|
if (m_hasBeenMoved) return;
|
|
Disable();
|
|
}
|
|
|
|
/**
|
|
* Write out the PID value as seen in the PIDOutput base object.
|
|
*
|
|
* @deprecated Call Set instead.
|
|
*
|
|
* @param output Write out the PercentVbus value as was computed by the
|
|
* PIDController
|
|
*/
|
|
void CANTalon::PIDWrite(float output) {
|
|
if (GetControlMode() == kPercentVbus) {
|
|
Set(output);
|
|
} else {
|
|
wpi_setWPIErrorWithContext(IncompatibleMode,
|
|
"PID only supported in PercentVbus mode");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Retrieve the current sensor value. Equivalent to Get().
|
|
*
|
|
* @return The current sensor value of the Talon.
|
|
*/
|
|
double CANTalon::PIDGet() { return Get(); }
|
|
|
|
/**
|
|
* Gets the current status of the Talon (usually a sensor value).
|
|
*
|
|
* In Current mode: returns output current.
|
|
* In Speed mode: returns current speed.
|
|
* In Position mode: returns current sensor position.
|
|
* In PercentVbus and Follower modes: returns current applied throttle.
|
|
*
|
|
* @return The current sensor value of the Talon.
|
|
*/
|
|
float CANTalon::Get() const {
|
|
int value;
|
|
switch (m_controlMode) {
|
|
case kVoltage:
|
|
return GetOutputVoltage();
|
|
case kCurrent:
|
|
return GetOutputCurrent();
|
|
case kSpeed:
|
|
m_impl->GetSensorVelocity(value);
|
|
return value;
|
|
case kPosition:
|
|
m_impl->GetSensorPosition(value);
|
|
return value;
|
|
case kPercentVbus:
|
|
case kFollower:
|
|
default:
|
|
m_impl->GetAppliedThrottle(value);
|
|
return (float)value / 1023.0;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sets the appropriate output on the talon, depending on the mode.
|
|
*
|
|
* In PercentVbus, the output is between -1.0 and 1.0, with 0.0 as stopped.
|
|
* In Voltage mode, output value is in volts.
|
|
* In Current mode, output value is in amperes.
|
|
* In Speed mode, output value is in position change / 10ms.
|
|
* In Position mode, output value is in encoder ticks or an analog value,
|
|
* depending on the sensor.
|
|
* In Follower mode, the output value is the integer device ID of the talon to
|
|
* duplicate.
|
|
*
|
|
* @param outputValue The setpoint value, as described above.
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
void CANTalon::Set(float value, uint8_t syncGroup) {
|
|
/* feed safety helper since caller just updated our output */
|
|
m_safetyHelper->Feed();
|
|
if (m_controlEnabled) {
|
|
m_setPoint = value;
|
|
CTR_Code status = CTR_OKAY;
|
|
switch (m_controlMode) {
|
|
case CANSpeedController::kPercentVbus: {
|
|
m_impl->Set(m_isInverted ? -value : value);
|
|
status = CTR_OKAY;
|
|
} break;
|
|
case CANSpeedController::kFollower: {
|
|
status = m_impl->SetDemand((int)value);
|
|
} break;
|
|
case CANSpeedController::kVoltage: {
|
|
// Voltage is an 8.8 fixed point number.
|
|
int volts = int((m_isInverted ? value : -value) * 256);
|
|
status = m_impl->SetDemand(volts);
|
|
} break;
|
|
case CANSpeedController::kSpeed:
|
|
status = m_impl->SetDemand(m_isInverted ? -value : value);
|
|
break;
|
|
case CANSpeedController::kPosition:
|
|
status = m_impl->SetDemand(value);
|
|
break;
|
|
case CANSpeedController::kCurrent:
|
|
default:
|
|
wpi_setWPIErrorWithContext(
|
|
IncompatibleMode,
|
|
"The CAN Talon does not support Current Mode at this time.");
|
|
break;
|
|
}
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
|
|
status = m_impl->SetModeSelect(m_sendMode);
|
|
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sets the setpoint to value. Equivalent to Set().
|
|
*/
|
|
void CANTalon::SetSetpoint(float value) { Set(value); }
|
|
|
|
/**
|
|
* Resets the integral term and disables the controller.
|
|
*/
|
|
void CANTalon::Reset() {
|
|
ClearIaccum();
|
|
Disable();
|
|
}
|
|
|
|
/**
|
|
* Disables control of the talon, causing the motor to brake or coast
|
|
* depending on its mode (see the Talon SRX Software Reference manual
|
|
* for more information).
|
|
*/
|
|
void CANTalon::Disable() {
|
|
m_impl->SetModeSelect((int)CANTalon::kDisabled);
|
|
m_controlEnabled = false;
|
|
}
|
|
|
|
/**
|
|
* Enables control of the Talon, allowing the motor to move.
|
|
*/
|
|
void CANTalon::EnableControl() {
|
|
SetControlMode(m_controlMode);
|
|
m_controlEnabled = true;
|
|
}
|
|
|
|
/**
|
|
* Enables control of the Talon, allowing the motor to move.
|
|
*/
|
|
void CANTalon::Enable() { EnableControl(); }
|
|
|
|
/**
|
|
* @return Whether the Talon is currently enabled.
|
|
*/
|
|
bool CANTalon::IsControlEnabled() const { return m_controlEnabled; }
|
|
|
|
/**
|
|
* @return Whether the Talon is currently enabled.
|
|
*/
|
|
bool CANTalon::IsEnabled() const { return IsControlEnabled(); }
|
|
|
|
/**
|
|
* @param p Proportional constant to use in PID loop.
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
void CANTalon::SetP(double p) {
|
|
CTR_Code status = m_impl->SetPgain(m_profile, p);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Set the integration constant of the currently selected profile.
|
|
*
|
|
* @param i Integration constant for the currently selected PID profile.
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
void CANTalon::SetI(double i) {
|
|
CTR_Code status = m_impl->SetIgain(m_profile, i);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Set the derivative constant of the currently selected profile.
|
|
*
|
|
* @param d Derivative constant for the currently selected PID profile.
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
void CANTalon::SetD(double d) {
|
|
CTR_Code status = m_impl->SetDgain(m_profile, d);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* Set the feedforward value of the currently selected profile.
|
|
*
|
|
* @param f Feedforward constant for the currently selected PID profile.
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
void CANTalon::SetF(double f) {
|
|
CTR_Code status = m_impl->SetFgain(m_profile, f);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* Set the Izone to a nonzero value to auto clear the integral accumulator
|
|
* when the absolute value of CloseLoopError exceeds Izone.
|
|
*
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
void CANTalon::SetIzone(unsigned iz) {
|
|
CTR_Code status = m_impl->SetIzone(m_profile, iz);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* SRX has two available slots for PID.
|
|
* @param slotIdx one or zero depending on which slot caller wants.
|
|
*/
|
|
void CANTalon::SelectProfileSlot(int slotIdx) {
|
|
m_profile = (slotIdx == 0) ? 0 : 1; /* only get two slots for now */
|
|
CTR_Code status = m_impl->SetProfileSlotSelect(m_profile);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* Sets control values for closed loop control.
|
|
*
|
|
* @param p Proportional constant.
|
|
* @param i Integration constant.
|
|
* @param d Differential constant.
|
|
* This function does not modify F-gain. Considerable passing a zero for f
|
|
* using
|
|
* the four-parameter function.
|
|
*/
|
|
void CANTalon::SetPID(double p, double i, double d) {
|
|
SetP(p);
|
|
SetI(i);
|
|
SetD(d);
|
|
}
|
|
/**
|
|
* Sets control values for closed loop control.
|
|
*
|
|
* @param p Proportional constant.
|
|
* @param i Integration constant.
|
|
* @param d Differential constant.
|
|
* @param f Feedforward constant.
|
|
*/
|
|
void CANTalon::SetPID(double p, double i, double d, double f) {
|
|
SetP(p);
|
|
SetI(i);
|
|
SetD(d);
|
|
SetF(f);
|
|
}
|
|
/**
|
|
* Select the feedback device to use in closed-loop
|
|
*/
|
|
void CANTalon::SetFeedbackDevice(FeedbackDevice device) {
|
|
CTR_Code status = m_impl->SetFeedbackDeviceSelect((int)device);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* Select the feedback device to use in closed-loop
|
|
*/
|
|
void CANTalon::SetStatusFrameRateMs(StatusFrameRate stateFrame, int periodMs) {
|
|
CTR_Code status = m_impl->SetStatusFrameRate((int)stateFrame, periodMs);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the current proportional constant.
|
|
*
|
|
* @return double proportional constant for current profile.
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
double CANTalon::GetP() const {
|
|
CanTalonSRX::param_t param = m_profile ? CanTalonSRX::eProfileParamSlot1_P
|
|
: CanTalonSRX::eProfileParamSlot0_P;
|
|
// Update the info in m_impl.
|
|
CTR_Code status = m_impl->RequestParam(param);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
usleep(kDelayForSolicitedSignalsUs); /* small yield for getting response */
|
|
double p;
|
|
status = m_impl->GetPgain(m_profile, p);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return p;
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
double CANTalon::GetI() const {
|
|
CanTalonSRX::param_t param = m_profile ? CanTalonSRX::eProfileParamSlot1_I
|
|
: CanTalonSRX::eProfileParamSlot0_I;
|
|
// Update the info in m_impl.
|
|
CTR_Code status = m_impl->RequestParam(param);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
usleep(kDelayForSolicitedSignalsUs); /* small yield for getting response */
|
|
|
|
double i;
|
|
status = m_impl->GetIgain(m_profile, i);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return i;
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
double CANTalon::GetD() const {
|
|
CanTalonSRX::param_t param = m_profile ? CanTalonSRX::eProfileParamSlot1_D
|
|
: CanTalonSRX::eProfileParamSlot0_D;
|
|
// Update the info in m_impl.
|
|
CTR_Code status = m_impl->RequestParam(param);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
usleep(kDelayForSolicitedSignalsUs); /* small yield for getting response */
|
|
|
|
double d;
|
|
status = m_impl->GetDgain(m_profile, d);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return d;
|
|
}
|
|
/**
|
|
*
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
double CANTalon::GetF() const {
|
|
CanTalonSRX::param_t param = m_profile ? CanTalonSRX::eProfileParamSlot1_F
|
|
: CanTalonSRX::eProfileParamSlot0_F;
|
|
// Update the info in m_impl.
|
|
CTR_Code status = m_impl->RequestParam(param);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
|
|
usleep(kDelayForSolicitedSignalsUs); /* small yield for getting response */
|
|
double f;
|
|
status = m_impl->GetFgain(m_profile, f);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return f;
|
|
}
|
|
/**
|
|
* @see SelectProfileSlot to choose between the two sets of gains.
|
|
*/
|
|
int CANTalon::GetIzone() const {
|
|
CanTalonSRX::param_t param = m_profile
|
|
? CanTalonSRX::eProfileParamSlot1_IZone
|
|
: CanTalonSRX::eProfileParamSlot0_IZone;
|
|
// Update the info in m_impl.
|
|
CTR_Code status = m_impl->RequestParam(param);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
usleep(kDelayForSolicitedSignalsUs);
|
|
|
|
int iz;
|
|
status = m_impl->GetIzone(m_profile, iz);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return iz;
|
|
}
|
|
|
|
/**
|
|
* @return the current setpoint; ie, whatever was last passed to Set().
|
|
*/
|
|
double CANTalon::GetSetpoint() const { return m_setPoint; }
|
|
|
|
/**
|
|
* Returns the voltage coming in from the battery.
|
|
*
|
|
* @return The input voltage in volts.
|
|
*/
|
|
float CANTalon::GetBusVoltage() const {
|
|
double voltage;
|
|
CTR_Code status = m_impl->GetBatteryV(voltage);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return voltage;
|
|
}
|
|
|
|
/**
|
|
* @return The voltage being output by the Talon, in Volts.
|
|
*/
|
|
float CANTalon::GetOutputVoltage() const {
|
|
int throttle11;
|
|
CTR_Code status = m_impl->GetAppliedThrottle(throttle11);
|
|
float voltage = GetBusVoltage() * (float(throttle11) / 1023.0);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return voltage;
|
|
}
|
|
|
|
/**
|
|
* Returns the current going through the Talon, in Amperes.
|
|
*/
|
|
float CANTalon::GetOutputCurrent() const {
|
|
double current;
|
|
|
|
CTR_Code status = m_impl->GetCurrent(current);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
|
|
return current;
|
|
}
|
|
|
|
/**
|
|
* Returns temperature of Talon, in degrees Celsius.
|
|
*/
|
|
float CANTalon::GetTemperature() const {
|
|
double temp;
|
|
|
|
CTR_Code status = m_impl->GetTemp(temp);
|
|
if (temp != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return temp;
|
|
}
|
|
/**
|
|
* Set the position value of the selected sensor. This is useful for zero-ing
|
|
* quadrature encoders.
|
|
* Continuous sensors (like analog encoderes) can also partially be set (the
|
|
* portion of the postion based on overflows).
|
|
*/
|
|
void CANTalon::SetPosition(double pos) { m_impl->SetSensorPosition(pos); }
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*
|
|
* @return The position of the sensor currently providing feedback.
|
|
* When using analog sensors, 0 units corresponds to 0V, 1023
|
|
* units corresponds to 3.3V
|
|
* When using an analog encoder (wrapping around 1023 => 0 is
|
|
* possible) the units are still 3.3V per 1023 units.
|
|
* When using quadrature, each unit is a quadrature edge (4X)
|
|
* mode.
|
|
*/
|
|
double CANTalon::GetPosition() const {
|
|
int postition;
|
|
|
|
CTR_Code status = m_impl->GetSensorPosition(postition);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return (double)postition;
|
|
}
|
|
/**
|
|
* If sensor and motor are out of phase, sensor can be inverted
|
|
* (position and velocity multiplied by -1).
|
|
* @see GetPosition and @see GetSpeed.
|
|
*/
|
|
void CANTalon::SetSensorDirection(bool reverseSensor) {
|
|
CTR_Code status = m_impl->SetRevFeedbackSensor(reverseSensor ? 1 : 0);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the current error in the controller.
|
|
*
|
|
* @return the difference between the setpoint and the sensor value.
|
|
*/
|
|
int CANTalon::GetClosedLoopError() const {
|
|
int error;
|
|
CTR_Code status = m_impl->GetCloseLoopErr(error);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return error;
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*
|
|
* @returns The speed of the sensor currently providing feedback.
|
|
*
|
|
* The speed units will be in the sensor's native ticks per 100ms.
|
|
*
|
|
* For analog sensors, 3.3V corresponds to 1023 units.
|
|
* So a speed of 200 equates to ~0.645 dV per 100ms or 6.451 dV per
|
|
* second.
|
|
* If this is an analog encoder, that likely means 1.9548 rotations
|
|
* per sec.
|
|
* For quadrature encoders, each unit corresponds a quadrature edge (4X).
|
|
* So a 250 count encoder will produce 1000 edge events per
|
|
* rotation.
|
|
* An example speed of 200 would then equate to 20% of a rotation
|
|
* per 100ms,
|
|
* or 10 rotations per second.
|
|
*/
|
|
double CANTalon::GetSpeed() const {
|
|
int speed;
|
|
// TODO convert from int to appropriate units (or at least document it).
|
|
|
|
CTR_Code status = m_impl->GetSensorVelocity(speed);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return (double)speed;
|
|
}
|
|
|
|
/**
|
|
* Get the position of whatever is in the analog pin of the Talon, regardless of
|
|
* whether it is actually being used for feedback.
|
|
*
|
|
* @returns The 24bit analog value. The bottom ten bits is the ADC (0 - 1023)
|
|
* on
|
|
* the analog pin of the Talon.
|
|
* The upper 14 bits
|
|
* tracks the overflows and
|
|
* underflows (continuous sensor).
|
|
*/
|
|
int CANTalon::GetAnalogIn() const {
|
|
int position;
|
|
CTR_Code status = m_impl->GetAnalogInWithOv(position);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return position;
|
|
}
|
|
/**
|
|
* Get the position of whatever is in the analog pin of the Talon, regardless of
|
|
* whether it is actually being used for feedback.
|
|
*
|
|
* @returns The ADC (0 - 1023) on analog pin of the Talon.
|
|
*/
|
|
int CANTalon::GetAnalogInRaw() const { return GetAnalogIn() & 0x3FF; }
|
|
/**
|
|
* Get the position of whatever is in the analog pin of the Talon, regardless of
|
|
* whether it is actually being used for feedback.
|
|
*
|
|
* @returns The value (0 - 1023) on the analog pin of the Talon.
|
|
*/
|
|
int CANTalon::GetAnalogInVel() const {
|
|
int vel;
|
|
CTR_Code status = m_impl->GetAnalogInVel(vel);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return vel;
|
|
}
|
|
|
|
/**
|
|
* Get the position of whatever is in the analog pin of the Talon, regardless of
|
|
* whether it is actually being used for feedback.
|
|
*
|
|
* @returns The value (0 - 1023) on the analog pin of the Talon.
|
|
*/
|
|
int CANTalon::GetEncPosition() const {
|
|
int position;
|
|
CTR_Code status = m_impl->GetEncPosition(position);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return position;
|
|
}
|
|
|
|
/**
|
|
* Get the position of whatever is in the analog pin of the Talon, regardless of
|
|
* whether it is actually being used for feedback.
|
|
*
|
|
* @returns The value (0 - 1023) on the analog pin of the Talon.
|
|
*/
|
|
int CANTalon::GetEncVel() const {
|
|
int vel;
|
|
CTR_Code status = m_impl->GetEncVel(vel);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return vel;
|
|
}
|
|
/**
|
|
* @return IO level of QUADA pin.
|
|
*/
|
|
int CANTalon::GetPinStateQuadA() const {
|
|
int retval;
|
|
CTR_Code status = m_impl->GetQuadApin(retval);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return retval;
|
|
}
|
|
/**
|
|
* @return IO level of QUADB pin.
|
|
*/
|
|
int CANTalon::GetPinStateQuadB() const {
|
|
int retval;
|
|
CTR_Code status = m_impl->GetQuadBpin(retval);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return retval;
|
|
}
|
|
/**
|
|
* @return IO level of QUAD Index pin.
|
|
*/
|
|
int CANTalon::GetPinStateQuadIdx() const {
|
|
int retval;
|
|
CTR_Code status = m_impl->GetQuadIdxpin(retval);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return retval;
|
|
}
|
|
/**
|
|
* @return '1' iff forward limit switch is closed, 0 iff switch is open.
|
|
* This function works regardless if limit switch feature is enabled.
|
|
*/
|
|
int CANTalon::IsFwdLimitSwitchClosed() const {
|
|
int retval;
|
|
CTR_Code status = m_impl->GetLimitSwitchClosedFor(
|
|
retval); /* rename this func, '1' => open, '0' => closed */
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return retval ? 0 : 1;
|
|
}
|
|
/**
|
|
* @return '1' iff reverse limit switch is closed, 0 iff switch is open.
|
|
* This function works regardless if limit switch feature is enabled.
|
|
*/
|
|
int CANTalon::IsRevLimitSwitchClosed() const {
|
|
int retval;
|
|
CTR_Code status = m_impl->GetLimitSwitchClosedRev(
|
|
retval); /* rename this func, '1' => open, '0' => closed */
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return retval ? 0 : 1;
|
|
}
|
|
/*
|
|
* Simple accessor for tracked rise eventso index pin.
|
|
* @return number of rising edges on idx pin.
|
|
*/
|
|
int CANTalon::GetNumberOfQuadIdxRises() const {
|
|
int rises;
|
|
CTR_Code status = m_impl->GetEncIndexRiseEvents(
|
|
rises); /* rename this func, '1' => open, '0' => closed */
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return rises;
|
|
}
|
|
/*
|
|
* @param rises integral value to set into index-rises register. Great way to
|
|
* zero the index count.
|
|
*/
|
|
void CANTalon::SetNumberOfQuadIdxRises(int rises) {
|
|
CTR_Code status = m_impl->SetParam(
|
|
CanTalonSRX::eEncIndexRiseEvents,
|
|
rises); /* rename this func, '1' => open, '0' => closed */
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
bool CANTalon::GetForwardLimitOK() const {
|
|
int limSwit = 0;
|
|
int softLim = 0;
|
|
CTR_Code status = CTR_OKAY;
|
|
status = m_impl->GetFault_ForSoftLim(softLim);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
status = m_impl->GetFault_ForLim(limSwit);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
/* If either fault is asserted, signal caller we are disabled (with false?) */
|
|
return (softLim | limSwit) ? false : true;
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
bool CANTalon::GetReverseLimitOK() const {
|
|
int limSwit = 0;
|
|
int softLim = 0;
|
|
CTR_Code status = CTR_OKAY;
|
|
status = m_impl->GetFault_RevSoftLim(softLim);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
status = m_impl->GetFault_RevLim(limSwit);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
/* If either fault is asserted, signal caller we are disabled (with false?) */
|
|
return (softLim | limSwit) ? false : true;
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
uint16_t CANTalon::GetFaults() const {
|
|
uint16_t retval = 0;
|
|
int val;
|
|
CTR_Code status = CTR_OKAY;
|
|
|
|
/* temperature */
|
|
val = 0;
|
|
status = m_impl->GetFault_OverTemp(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kTemperatureFault : 0;
|
|
|
|
/* voltage */
|
|
val = 0;
|
|
status = m_impl->GetFault_UnderVoltage(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kBusVoltageFault : 0;
|
|
|
|
/* fwd-limit-switch */
|
|
val = 0;
|
|
status = m_impl->GetFault_ForLim(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kFwdLimitSwitch : 0;
|
|
|
|
/* rev-limit-switch */
|
|
val = 0;
|
|
status = m_impl->GetFault_RevLim(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kRevLimitSwitch : 0;
|
|
|
|
/* fwd-soft-limit */
|
|
val = 0;
|
|
status = m_impl->GetFault_ForSoftLim(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kFwdSoftLimit : 0;
|
|
|
|
/* rev-soft-limit */
|
|
val = 0;
|
|
status = m_impl->GetFault_RevSoftLim(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kRevSoftLimit : 0;
|
|
|
|
return retval;
|
|
}
|
|
uint16_t CANTalon::GetStickyFaults() const {
|
|
uint16_t retval = 0;
|
|
int val;
|
|
CTR_Code status = CTR_OKAY;
|
|
|
|
/* temperature */
|
|
val = 0;
|
|
status = m_impl->GetStckyFault_OverTemp(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kTemperatureFault : 0;
|
|
|
|
/* voltage */
|
|
val = 0;
|
|
status = m_impl->GetStckyFault_UnderVoltage(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kBusVoltageFault : 0;
|
|
|
|
/* fwd-limit-switch */
|
|
val = 0;
|
|
status = m_impl->GetStckyFault_ForLim(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kFwdLimitSwitch : 0;
|
|
|
|
/* rev-limit-switch */
|
|
val = 0;
|
|
status = m_impl->GetStckyFault_RevLim(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kRevLimitSwitch : 0;
|
|
|
|
/* fwd-soft-limit */
|
|
val = 0;
|
|
status = m_impl->GetStckyFault_ForSoftLim(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kFwdSoftLimit : 0;
|
|
|
|
/* rev-soft-limit */
|
|
val = 0;
|
|
status = m_impl->GetStckyFault_RevSoftLim(val);
|
|
if (status != CTR_OKAY)
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
retval |= (val) ? CANSpeedController::kRevSoftLimit : 0;
|
|
|
|
return retval;
|
|
}
|
|
void CANTalon::ClearStickyFaults() {
|
|
CTR_Code status = m_impl->ClearStickyFaults();
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
|
|
/**
|
|
* Set the maximum voltage change rate. This ramp rate is in affect regardless
|
|
* of which control mode
|
|
* the TALON is in.
|
|
*
|
|
* When in PercentVbus or Voltage output mode, the rate at which the voltage
|
|
* changes can
|
|
* be limited to reduce current spikes. Set this to 0.0 to disable rate
|
|
* limiting.
|
|
*
|
|
* @param rampRate The maximum rate of voltage change in Percent Voltage mode in
|
|
* V/s.
|
|
*/
|
|
void CANTalon::SetVoltageRampRate(double rampRate) {
|
|
/* Caller is expressing ramp as Voltage per sec, assuming 12V is full.
|
|
Talon's throttle ramp is in dThrot/d10ms. 1023 is full fwd, -1023 is
|
|
full rev. */
|
|
double rampRatedThrotPer10ms = (rampRate * 1023.0 / 12.0) / 100;
|
|
CTR_Code status = m_impl->SetRampThrottle((int)rampRatedThrotPer10ms);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* Sets a voltage change rate that applies only when a close loop contorl mode
|
|
* is enabled.
|
|
* This allows close loop specific ramp behavior.
|
|
*
|
|
* @param rampRate The maximum rate of voltage change in Percent Voltage mode in
|
|
* V/s.
|
|
*/
|
|
void CANTalon::SetCloseLoopRampRate(double rampRate) {
|
|
CTR_Code status = m_impl->SetCloseLoopRampRate(
|
|
m_profile, rampRate * 1023.0 / 12.0 / 1000.0);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return The version of the firmware running on the Talon
|
|
*/
|
|
uint32_t CANTalon::GetFirmwareVersion() const {
|
|
int firmwareVersion;
|
|
CTR_Code status = m_impl->RequestParam(CanTalonSRX::eFirmVers);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
usleep(kDelayForSolicitedSignalsUs);
|
|
status =
|
|
m_impl->GetParamResponseInt32(CanTalonSRX::eFirmVers, firmwareVersion);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
|
|
/* only sent once on boot */
|
|
// CTR_Code status = m_impl->GetFirmVers(firmwareVersion);
|
|
// if(status != CTR_OKAY) {
|
|
// wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
//}
|
|
|
|
return firmwareVersion;
|
|
}
|
|
/**
|
|
* @return The accumulator for I gain.
|
|
*/
|
|
int CANTalon::GetIaccum() const {
|
|
CTR_Code status = m_impl->RequestParam(CanTalonSRX::ePidIaccum);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
usleep(kDelayForSolicitedSignalsUs); /* small yield for getting response */
|
|
int iaccum;
|
|
status = m_impl->GetParamResponseInt32(CanTalonSRX::ePidIaccum, iaccum);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return iaccum;
|
|
}
|
|
/**
|
|
* Clear the accumulator for I gain.
|
|
*/
|
|
void CANTalon::ClearIaccum() {
|
|
CTR_Code status = m_impl->SetParam(CanTalonSRX::ePidIaccum, 0);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
void CANTalon::ConfigNeutralMode(NeutralMode mode) {
|
|
CTR_Code status = CTR_OKAY;
|
|
switch (mode) {
|
|
default:
|
|
case kNeutralMode_Jumper: /* use default setting in flash based on
|
|
webdash/BrakeCal button selection */
|
|
status = m_impl->SetOverrideBrakeType(
|
|
CanTalonSRX::kBrakeOverride_UseDefaultsFromFlash);
|
|
break;
|
|
case kNeutralMode_Brake:
|
|
status = m_impl->SetOverrideBrakeType(
|
|
CanTalonSRX::kBrakeOverride_OverrideBrake);
|
|
break;
|
|
case kNeutralMode_Coast:
|
|
status = m_impl->SetOverrideBrakeType(
|
|
CanTalonSRX::kBrakeOverride_OverrideCoast);
|
|
break;
|
|
}
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* @return nonzero if brake is enabled during neutral. Zero if coast is enabled
|
|
* during neutral.
|
|
*/
|
|
int CANTalon::GetBrakeEnableDuringNeutral() const {
|
|
int brakeEn = 0;
|
|
CTR_Code status = m_impl->GetBrakeIsEnabled(brakeEn);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
return brakeEn;
|
|
}
|
|
/**
|
|
* @deprecated not implemented
|
|
*/
|
|
void CANTalon::ConfigEncoderCodesPerRev(uint16_t codesPerRev) {
|
|
/* TALON SRX does not scale units, they are raw from the sensor. Unit scaling
|
|
* can be done in API or by caller */
|
|
}
|
|
|
|
/**
|
|
* @deprecated not implemented
|
|
*/
|
|
void CANTalon::ConfigPotentiometerTurns(uint16_t turns) {
|
|
/* TALON SRX does not scale units, they are raw from the sensor. Unit scaling
|
|
* can be done in API or by caller */
|
|
}
|
|
|
|
/**
|
|
* @deprecated not implemented
|
|
*/
|
|
void CANTalon::ConfigSoftPositionLimits(double forwardLimitPosition,
|
|
double reverseLimitPosition) {
|
|
ConfigLimitMode(kLimitMode_SoftPositionLimits);
|
|
ConfigForwardLimit(forwardLimitPosition);
|
|
ConfigReverseLimit(reverseLimitPosition);
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
void CANTalon::DisableSoftPositionLimits() {
|
|
ConfigLimitMode(kLimitMode_SwitchInputsOnly);
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
* Configures the soft limit enable (wear leveled persistent memory).
|
|
* Also sets the limit switch overrides.
|
|
*/
|
|
void CANTalon::ConfigLimitMode(LimitMode mode) {
|
|
CTR_Code status = CTR_OKAY;
|
|
switch (mode) {
|
|
case kLimitMode_SwitchInputsOnly: /** Only use switches for limits */
|
|
/* turn OFF both limits. SRX has individual enables and polarity for each
|
|
* limit switch.*/
|
|
status = m_impl->SetForwardSoftEnable(false);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
status = m_impl->SetReverseSoftEnable(false);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
/* override enable the limit switches, this circumvents the webdash */
|
|
status = m_impl->SetOverrideLimitSwitchEn(
|
|
CanTalonSRX::kLimitSwitchOverride_EnableFwd_EnableRev);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
break;
|
|
case kLimitMode_SoftPositionLimits: /** Use both switches and soft limits */
|
|
/* turn on both limits. SRX has individual enables and polarity for each
|
|
* limit switch.*/
|
|
status = m_impl->SetForwardSoftEnable(true);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
status = m_impl->SetReverseSoftEnable(true);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
/* override enable the limit switches, this circumvents the webdash */
|
|
status = m_impl->SetOverrideLimitSwitchEn(
|
|
CanTalonSRX::kLimitSwitchOverride_EnableFwd_EnableRev);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
break;
|
|
|
|
case kLimitMode_SrxDisableSwitchInputs: /** disable both limit switches and
|
|
soft limits */
|
|
/* turn on both limits. SRX has individual enables and polarity for each
|
|
* limit switch.*/
|
|
status = m_impl->SetForwardSoftEnable(false);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
status = m_impl->SetReverseSoftEnable(false);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
/* override enable the limit switches, this circumvents the webdash */
|
|
status = m_impl->SetOverrideLimitSwitchEn(
|
|
CanTalonSRX::kLimitSwitchOverride_DisableFwd_DisableRev);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
void CANTalon::ConfigForwardLimit(double forwardLimitPosition) {
|
|
CTR_Code status = CTR_OKAY;
|
|
status = m_impl->SetForwardSoftLimit(forwardLimitPosition);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* Change the fwd limit switch setting to normally open or closed.
|
|
* Talon will disable momentarilly if the Talon's current setting
|
|
* is dissimilar to the caller's requested setting.
|
|
*
|
|
* Since Talon saves setting to flash this should only affect
|
|
* a given Talon initially during robot install.
|
|
*
|
|
* @param normallyOpen true for normally open. false for normally closed.
|
|
*/
|
|
void CANTalon::ConfigFwdLimitSwitchNormallyOpen(bool normallyOpen) {
|
|
CTR_Code status =
|
|
m_impl->SetParam(CanTalonSRX::eOnBoot_LimitSwitch_Forward_NormallyClosed,
|
|
normallyOpen ? 0 : 1);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* Change the rev limit switch setting to normally open or closed.
|
|
* Talon will disable momentarilly if the Talon's current setting
|
|
* is dissimilar to the caller's requested setting.
|
|
*
|
|
* Since Talon saves setting to flash this should only affect
|
|
* a given Talon initially during robot install.
|
|
*
|
|
* @param normallyOpen true for normally open. false for normally closed.
|
|
*/
|
|
void CANTalon::ConfigRevLimitSwitchNormallyOpen(bool normallyOpen) {
|
|
CTR_Code status =
|
|
m_impl->SetParam(CanTalonSRX::eOnBoot_LimitSwitch_Reverse_NormallyClosed,
|
|
normallyOpen ? 0 : 1);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
void CANTalon::ConfigReverseLimit(double reverseLimitPosition) {
|
|
CTR_Code status = CTR_OKAY;
|
|
status = m_impl->SetReverseSoftLimit(reverseLimitPosition);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
void CANTalon::ConfigMaxOutputVoltage(double voltage) {
|
|
/* SRX does not support max output */
|
|
wpi_setWPIErrorWithContext(IncompatibleMode,
|
|
"MaxOutputVoltage not supported.");
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
void CANTalon::ConfigFaultTime(float faultTime) {
|
|
/* SRX does not have fault time. SRX motor drive is only disabled for soft
|
|
* limits and limit-switch faults. */
|
|
wpi_setWPIErrorWithContext(IncompatibleMode, "Fault Time not supported.");
|
|
}
|
|
|
|
/**
|
|
* Fixup the sendMode so Set() serializes the correct demand value.
|
|
* Also fills the modeSelecet in the control frame to disabled.
|
|
* @param mode Control mode to ultimately enter once user calls Set().
|
|
* @see Set()
|
|
*/
|
|
void CANTalon::ApplyControlMode(CANSpeedController::ControlMode mode) {
|
|
m_controlMode = mode;
|
|
HALReport(HALUsageReporting::kResourceType_CANTalonSRX, m_deviceNumber + 1,
|
|
mode);
|
|
switch (mode) {
|
|
case kPercentVbus:
|
|
m_sendMode = kThrottle;
|
|
break;
|
|
case kCurrent:
|
|
m_sendMode = kCurrentMode;
|
|
break;
|
|
case kSpeed:
|
|
m_sendMode = kSpeedMode;
|
|
break;
|
|
case kPosition:
|
|
m_sendMode = kPositionMode;
|
|
break;
|
|
case kVoltage:
|
|
m_sendMode = kVoltageMode;
|
|
break;
|
|
case kFollower:
|
|
m_sendMode = kFollowerMode;
|
|
break;
|
|
}
|
|
// Keep the talon disabled until Set() is called.
|
|
CTR_Code status = m_impl->SetModeSelect((int)kDisabled);
|
|
if (status != CTR_OKAY) {
|
|
wpi_setErrorWithContext(status, getHALErrorMessage(status));
|
|
}
|
|
}
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
void CANTalon::SetControlMode(CANSpeedController::ControlMode mode) {
|
|
if (m_controlMode == mode) {
|
|
/* we already are in this mode, don't perform disable workaround */
|
|
} else {
|
|
ApplyControlMode(mode);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* TODO documentation (see CANJaguar.cpp)
|
|
*/
|
|
CANSpeedController::ControlMode CANTalon::GetControlMode() const {
|
|
return m_controlMode;
|
|
}
|
|
|
|
void CANTalon::SetExpiration(float timeout) {
|
|
m_safetyHelper->SetExpiration(timeout);
|
|
}
|
|
|
|
float CANTalon::GetExpiration() const {
|
|
return m_safetyHelper->GetExpiration();
|
|
}
|
|
|
|
bool CANTalon::IsAlive() const { return m_safetyHelper->IsAlive(); }
|
|
|
|
bool CANTalon::IsSafetyEnabled() const {
|
|
return m_safetyHelper->IsSafetyEnabled();
|
|
}
|
|
|
|
void CANTalon::SetSafetyEnabled(bool enabled) {
|
|
m_safetyHelper->SetSafetyEnabled(enabled);
|
|
}
|
|
|
|
void CANTalon::GetDescription(std::ostringstream& desc) const {
|
|
desc << "CANTalon ID " << m_deviceNumber;
|
|
}
|
|
|
|
/**
|
|
* Common interface for inverting direction of a speed controller.
|
|
* Only works in PercentVbus, speed, and Voltage modes.
|
|
* @param isInverted The state of inversion, true is inverted.
|
|
*/
|
|
void CANTalon::SetInverted(bool isInverted) { m_isInverted = isInverted; }
|
|
|
|
/**
|
|
* Common interface for the inverting direction of a speed controller.
|
|
*
|
|
* @return isInverted The state of inversion, true is inverted.
|
|
*
|
|
*/
|
|
bool CANTalon::GetInverted() const { return m_isInverted; }
|
|
|
|
/**
|
|
* Common interface for stopping the motor
|
|
* Part of the MotorSafety interface
|
|
*
|
|
* @deprecated Call Disable instead.
|
|
*/
|
|
void CANTalon::StopMotor() { Disable(); }
|
|
|
|
void CANTalon::ValueChanged(ITable* source, llvm::StringRef key,
|
|
std::shared_ptr<nt::Value> value, bool isNew) {
|
|
if (!value->IsDouble()) return;
|
|
Set(value->GetDouble());
|
|
}
|
|
|
|
void CANTalon::UpdateTable() {
|
|
if (m_table != nullptr) {
|
|
m_table->PutNumber("Value", Get());
|
|
}
|
|
}
|
|
|
|
void CANTalon::StartLiveWindowMode() {
|
|
if (m_table != nullptr) {
|
|
m_table->AddTableListener("Value", this, true);
|
|
}
|
|
}
|
|
|
|
void CANTalon::StopLiveWindowMode() {
|
|
if (m_table != nullptr) {
|
|
m_table->RemoveTableListener(this);
|
|
}
|
|
}
|
|
|
|
std::string CANTalon::GetSmartDashboardType() const {
|
|
return "Speed Controller";
|
|
}
|
|
|
|
void CANTalon::InitTable(std::shared_ptr<ITable> subTable) {
|
|
m_table = subTable;
|
|
UpdateTable();
|
|
}
|
|
|
|
std::shared_ptr<ITable> CANTalon::GetTable() const { return m_table; }
|