This repository was archived by the owner on Feb 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 248
Fix optional absolute encoder for Spark devices #298
Merged
thenetworkgrinch
merged 3 commits into
Yet-Another-Software-Suite:dev
from
MetabolicCloth:spark-attached-encoder
Jan 15, 2025
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,7 +46,7 @@ public class SparkMaxBrushedMotorSwerve extends SwerveMotor | |
| /** | ||
| * Absolute encoder attached to the SparkMax (if exists) | ||
| */ | ||
| public SwerveAbsoluteEncoder absoluteEncoder; | ||
| public Optional<SwerveAbsoluteEncoder> absoluteEncoder; | ||
| /** | ||
| * Integrated encoder. | ||
| */ | ||
|
|
@@ -290,7 +290,7 @@ public DCMotor getSimMotor() | |
| @Override | ||
| public boolean isAttachedAbsoluteEncoder() | ||
| { | ||
| return absoluteEncoder != null; | ||
| return absoluteEncoder.isPresent(); | ||
| } | ||
|
|
||
| /** | ||
|
|
@@ -322,7 +322,7 @@ public SwerveMotor setAbsoluteEncoder(SwerveAbsoluteEncoder encoder) | |
| { | ||
| if (encoder == null) | ||
| { | ||
| absoluteEncoder = null; | ||
| absoluteEncoder = Optional.empty(); | ||
| cfg.closedLoop.feedbackSensor(FeedbackSensor.kPrimaryEncoder); | ||
|
|
||
| this.encoder.ifPresentOrElse((RelativeEncoder enc) -> { | ||
|
|
@@ -337,9 +337,9 @@ public SwerveMotor setAbsoluteEncoder(SwerveAbsoluteEncoder encoder) | |
| cfg.closedLoop.feedbackSensor(encoder instanceof SparkMaxAnalogEncoderSwerve | ||
| ? FeedbackSensor.kAnalogSensor : FeedbackSensor.kAbsoluteEncoder); | ||
|
|
||
| absoluteEncoder = encoder; | ||
| velocity = absoluteEncoder::getVelocity; | ||
| position = absoluteEncoder::getAbsolutePosition; | ||
| absoluteEncoder = Optional.of(encoder); | ||
| velocity = encoder::getVelocity; | ||
MetabolicCloth marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| position = encoder::getAbsolutePosition; | ||
| noEncoderDefinedAlert.set(false); | ||
| } | ||
| if (absoluteEncoder == null && this.encoder.isEmpty()) | ||
|
||
|
|
@@ -404,7 +404,7 @@ public void configureIntegratedEncoder(double positionConversionFactor) | |
| // Some of the frames can probably be adjusted to decrease CAN utilization, with 65535 being the max. | ||
| // From testing, 20ms on frame 5 sometimes returns the same value while constantly powering the azimuth but 8ms may be overkill, | ||
| // with limited testing 19ms did not return the same value while the module was constatntly rotating. | ||
| if (absoluteEncoder.getAbsoluteEncoder() instanceof AbsoluteEncoder) | ||
| if (absoluteEncoder.get().getAbsoluteEncoder() instanceof AbsoluteEncoder) | ||
| { | ||
| cfg.closedLoop.feedbackSensor(FeedbackSensor.kAbsoluteEncoder); | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.