|
ReduxLib C++ 2026.1.2
|
#include <Canandmag.h>


Public Member Functions | |
| Canandmag (int canID, std::string bus="halcan") | |
| units::turn_t | GetPosition () |
| units::turn_t | GetAbsPosition () |
| bool | SetPosition (units::turn_t newPosition, units::second_t timeout=20_ms) |
| bool | SetAbsPosition (units::turn_t newPosition, units::second_t timeout=20_ms, bool ephemeral=false) |
| bool | ZeroAll (units::second_t timeout=20_ms) |
| units::turns_per_second_t | GetVelocity () |
| bool | MagnetInRange () |
| CanandmagFaults | GetStickyFaults () |
| CanandmagFaults | GetActiveFaults () |
| units::celsius_t | GetTemperature () |
| CanandmagStatus | GetStatus () |
| void | ClearStickyFaults () |
| void | SetPartyMode (uint8_t level) |
| CanandmagSettings | GetSettings (units::second_t timeout=350_ms, units::second_t missingTimeout=20_ms, uint32_t attempts=3) |
| void | StartFetchSettings () |
| CanandmagSettings | GetSettingsAsync () |
| CanandmagSettings | SetSettings (CanandmagSettings &settings, units::second_t timeout=20_ms, uint32_t attempts=3) |
| CanandmagSettings | ResetFactoryDefaults (bool clearZero=false, units::second_t timeout=350_ms) |
| redux::canand::CanandSettingsManager< CanandmagSettings > & | GetInternalSettingsManager () |
| redux::frames::Frame< units::turn_t > & | GetPositionFrame () |
| redux::frames::Frame< units::turn_t > & | GetAbsPositionFrame () |
| redux::frames::Frame< units::turns_per_second_t > & | GetVelocityFrame () |
| redux::frames::Frame< CanandmagStatus > & | GetStatusFrame () |
| void | HandleMessage (redux::canand::CanandMessage &msg) override |
| redux::canand::CanandAddress & | GetAddress () override |
| std::string | GetDeviceClassName () override |
| redux::canand::CanandFirmwareVersion | GetMinimumFirmwareVersion () override |
Public Member Functions inherited from redux::canand::CanandDevice | |
| bool | IsConnected (units::second_t timeout=2_s) |
| std::string | GetDeviceName () |
| virtual void | PreHandleMessage (CanandMessage &msg) |
| virtual void | CheckReceivedFirmwareVersion () |
| bool | SendCANMessage (uint8_t apiIndex, uint8_t *data, uint8_t length) |
| template<std::size_t len> requires (len < 8U) | |
| void | SendCANMessage (uint8_t msgId, std::span< std::byte, len > data) |
Static Public Attributes | |
| static constexpr double | kCountsPerRotation = 16384 |
| static constexpr double | kCountsPerRotationPerSecond = 1024 |
Protected Attributes | |
| redux::frames::Frame< units::turn_t > | position {0.0_tr, 0_ms} |
| redux::frames::Frame< units::turn_t > | absPosition {0.0_tr, 0_ms} |
| redux::frames::Frame< units::turns_per_second_t > | velocity {0_tps, 0_ms} |
| redux::frames::Frame< CanandmagStatus > | status {CanandmagStatus{0, 0, false, 30_degC, false}, 0_ms} |
| redux::canand::CanandSettingsManager< CanandmagSettings > | stg {*this} |
Class for the CAN interface of the Canandmag.
If you are using a Canandmag with Spark Max or Talon with the PWM output, see our Spark Max docs or our Talon SRX docs for information on how to use the encoder with the Rev and CTRE APIs.
The C++ vendordep uses the units library for all dimensioned values, including settings.
Operations that receive data from the device (position, velocity, faults, temperature) generally do not block. The object receives data asynchronously from the CAN packet receive thread and reads thus return the last data received.
Operations that set settings or change offsets will generally wait for up to 20ms by default as they will usually wait for a confirmation packet to be received in response – unless the blocking timeout is set to zero, in which case the operation swill not block.
Example code:
| redux::sensors::canandmag::Canandmag::Canandmag | ( | int | canID, |
| std::string | bus = "halcan" |
||
| ) |
Constructor with the device's id. This object will be constant with respect to whatever CAN id assigned to it, so if a device changes id it may change which device this object reads from.
| canID | the device id to use |
| bus | the message bus to use. Defaults to "halcan" |
| void redux::sensors::canandmag::Canandmag::ClearStickyFaults | ( | ) |
Clears sticky faults.
It is recommended to clear this during initialization, so one can check if the encoder loses power during operation later.
This call does not block, so it may take up to the next status frame (default every 1000 ms) for the sticky faults to be updated.
| units::turn_t redux::sensors::canandmag::Canandmag::GetAbsPosition | ( | ) |
Gets the current absolute position of the encoder, in a scaled value from 0 inclusive to 1 exclusive. By default, higher values are in the counter-clockwise direction from the sensor face.
This value will persist across encoder power cycles making it appropriate for swerves/arms/etc.
|
inline |
Returns the current absolute position frame, which includes CAN timestamp data.
| CanandmagFaults redux::sensors::canandmag::Canandmag::GetActiveFaults | ( | ) |
Fetches active faults. Active faults are only active for as long as the error state exists.
|
overridevirtual |
Returns the reference to the CanandAddress representing the combination of CAN bus and CAN device ID that this CanandDevice refers to.
Implementing device subclasses should likely construct a new CanandAddress in their constructor and return it here.
Implements redux::canand::CanandDevice.
|
inlineoverridevirtual |
Returns a canonical class-wide device name.
Reimplemented from redux::canand::CanandDevice.
|
inline |
Returns the CanandSettingsManager associated with this device.
The CanandSettingsManager is an internal helper object. Teams are typically not expected to use it except for advanced cases (e.g. custom settings wrappers)
|
inlineoverridevirtual |
Returns the minimum firmware version this vendordep requires.
Reimplemented from redux::canand::CanandDevice.
| units::turn_t redux::sensors::canandmag::Canandmag::GetPosition | ( | ) |
Gets the current integrated position in rotations.
This value does not wrap around, so turning a sensed axle multiple rotations will return multiple sensed rotations of position. By default, positive is in the counter-clockwise direction from the sensor face.
On encoder power-on, unlike the absolute value, this value will always initialize to zero.
|
inline |
Returns the current relative position frame, which includes CAN timestamp data. redux::canand::FrameData objects are immutable.
|
inline |
Fetches the Canandmag's current configuration in a blocking manner. This function will need to block for at least 0.2-0.3 seconds waiting for the encoder to reply, so it is best to put this in an init function, rather than the main loop.
Note that unlike v2023, this function will always return a settings object, but they may be incomplete settings!
You will need to do something like this to unwrap/verify the result:
Advanced users can use this function to retry settings missed from StartFetchSettings:
| timeout | maximum number of seconds to wait for a settings operation before timing out (default 350_ms) |
| missingTimeout | maximum number of seconds to wait for each settings retry before giving up |
| attempts | number of attempts to try and fetch values missing from the first pass |
|
inline |
Non-blockingly returns a CanandmagSettings object of the most recent known settings values received from the encoder.
Most users will probably want to use Canandmag::GetSettings() instead.
One can call this after a Canandmag::StartFetchSettings() call, and use CanandmagSettings::AllSettingsReceived() to check if/when all values have been seen. As an example:
If this is called after Canandmag::SetSettings(), this method will return a settings object where only the fields where the encoder has echoed the new values back will be populated. To illustrate this, consider the following:
|
inline |
Get the contents of the previous status packet, which includes active faults, sticky faults, and temperature.
|
inline |
Returns a handle to the current status frame, which includes CAN timestamp data.
| CanandmagFaults redux::sensors::canandmag::Canandmag::GetStickyFaults | ( | ) |
Fetches sticky faults. Sticky faults are the active faults, except once set they do not become unset until ClearStickyFaults() is called.
| units::celsius_t redux::sensors::canandmag::Canandmag::GetTemperature | ( | ) |
Get onboard encoder temperature readings in degrees Celsius.
| units::turns_per_second_t redux::sensors::canandmag::Canandmag::GetVelocity | ( | ) |
Returns the measured velocity in rotations per second.
|
inline |
Returns the current velocity frame, which includes CAN timestamp data.
|
overridevirtual |
A callback called when a Redux CAN message is received and should be parsed. Subclasses of CanandDevice should override this to update their internal state accordingly.
HandleMessage will be called on all Redux CAN packets received by the vendordep that match the CanandAddress returned by CanandDevice::GetAddress().
| msg | a reference to a CanandMessage representing the received message. The message may not have lifetime outside the function call. |
Implements redux::canand::CanandDevice.
| bool redux::sensors::canandmag::Canandmag::MagnetInRange | ( | ) |
Returns whether the encoder magnet is in range of the sensor or not. This can be seen visually on the sensor – a green LED is in range, whereas a red LED is out of range.
|
inline |
Resets the encoder to factory defaults, and then wait for all settings to be broadcasted back.
| clearZero | whether to clear the zero offset from the encoder's memory as well |
| timeout | how long to wait for the new settings to be confirmed by the encoder in seconds (suggested at least 0.35 seconds) |
| bool redux::sensors::canandmag::Canandmag::SetAbsPosition | ( | units::turn_t | newPosition, |
| units::second_t | timeout = 20_ms, |
||
| bool | ephemeral = false |
||
| ) |
Sets the new absolute position value for the encoder which will (by default) persist across reboots.
| newPosition | new absolute position in fraction of a rotation (acceptable range [0..1)) |
| timeout | maximum time to wait for the operation to be confirmed (default 0.020 seconds). Set to 0 to not check (and not block). |
| ephemeral | if true, set the setting ephemerally – the new zero offset will not persist on power cycle. |
| void redux::sensors::canandmag::Canandmag::SetPartyMode | ( | uint8_t | level | ) |
Controls "party mode" – an encoder identification tool that blinks the onboard LED various colors at a user-specified strobe period. The strobe period of the LED will be (50 milliseconds * level). Setting this to 0 disables party mode.
This function does not block.
| level | the party level value to set. |
| bool redux::sensors::canandmag::Canandmag::SetPosition | ( | units::turn_t | newPosition, |
| units::second_t | timeout = 20_ms |
||
| ) |
Sets the new relative (multi-turn) position of the encoder to the given value.
Note that this does not update the absolute position, and this value is lost on a power cycle. To update the absolute position, use Canandmag::SetAbsPosition
| newPosition | new position in rotations |
| timeout | maximum time to wait for the operation to be confirmed (default 0.020 seconds). Set to 0 to not check (and not block). |
|
inline |
Applies the settings from a CanandmagSettings object to the Canandmag. For more information, see the CanandmagSettings class documentation.
Example:
| settings | the CanandmagSettings to update the encoder with |
| timeout | maximum time in seconds to wait for each setting to be confirmed. (default 0.020s, set to 0 to not check and not block). |
| attempts | the maxinum number of attempts to write each individual settings |
|
inline |
Tells the Canandmag to begin transmitting its settings; once they are all transmitted (after ~200-300ms), the values can be retrieved through the Canandmag::GetSettingsAsync() function call
| bool redux::sensors::canandmag::Canandmag::ZeroAll | ( | units::second_t | timeout = 20_ms | ) |
Sets both the current absolute and relative encoder position to 0 – generally equivalent to pressing the physical zeroing button on the encoder.
| timeout | maximum time in seconds to wait for each operation to be confirmed (there are 2 ops for zeroing both absolute and relative positions, so the wait is up to 2x timouet). Set to 0 to not check (and not block). |
|
protected |
internal Frame variable holding current absolute position state
|
staticconstexpr |
number of encoder ticks per rotation
|
staticconstexpr |
number of velocity ticks per rotation per second
|
protected |
internal Frame variable holding current relative position state
|
protected |
internal Frame variable holding current status value state
|
protected |
internal settings manager
|
protected |
internal Frame variable holding current velocity state