Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,32 @@ public class SparkWrapper implements SmartMotorController {
/**
* The feed forward controller running the feed forward calculations.
*/
private final FeedForwardController feedForwardController;
protected final FeedForwardController feedForwardController;

/**
* The spark motor controller.
*/
private SparkBase sparkBase;
protected SparkBase sparkBase;

/**
* The spark's configuration accessor.
*/
private SparkBaseConfigAccessor configAccessor;
protected SparkBaseConfigAccessor configAccessor;

/**
* The spark's configuration.
*/
private SparkBaseConfig sparkConfig;
protected SparkBaseConfig sparkConfig;

/**
* The closed loop configuration for the spark.
*/
private ClosedLoopConfig closedLoopConfig;
protected ClosedLoopConfig closedLoopConfig;

/**
* The encoder configuration for the spark.
*/
private EncoderConfig encoderConfig;
protected EncoderConfig encoderConfig;

/**
* Constructs a new instance of {@link SparkWrapper} with a {@link SparkMax} as the motor controller.
Expand Down