Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "java"
id "edu.wpi.first.GradleRIO" version "2025.1.1"
id "edu.wpi.first.GradleRIO" version "2025.2.1"
id "com.peterabeles.gversion" version "1.10.3"
id "com.diffplug.spotless" version "6.25.0"
id "io.freefair.lombok" version "8.11"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public final class Constants {
// under strict caveat emptor -- and submit any error and bugfixes
// via GitHub issues.
private static SwerveType swerveType = SwerveType.PHOENIX6; // PHOENIX6, YAGSL
private static CTREPro phoenixPro = CTREPro.LICENSED; // LICENSED, UNLICENSED
private static CTREPro phoenixPro = CTREPro.UNLICENSED; // LICENSED, UNLICENSED
private static AutoType autoType = AutoType.PATHPLANNER; // PATHPLANNER, CHOREO
private static VisionType visionType = VisionType.NONE; // PHOTON, LIMELIGHT, NONE

Expand Down
1 change: 0 additions & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ private void configureBindings() {
}

// SET STANDARD DRIVING AS DEFAULT COMMAND FOR THE DRIVEBASE
// TODO: With a re-do of Phoenix Tuner X on George, ensure the signs are all correct!!!!!
m_drivebase.setDefaultCommand(
DriveCommands.fieldRelativeDrive(
m_drivebase,
Expand Down
6 changes: 0 additions & 6 deletions src/main/java/frc/robot/commands/DriveCommands.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ public class DriveCommands {
private static final double WHEEL_RADIUS_MAX_VELOCITY = 0.25; // Rad/Sec
private static final double WHEEL_RADIUS_RAMP_RATE = 0.05; // Rad/Sec^2

// Create slew rate limiters for smoothing erratic joystick motions
private static final SlewRateLimiter linearVelocityFilter =
new SlewRateLimiter(OperatorConstants.kJoystickSlewLimit);
private static final SlewRateLimiter omegaFilter =
new SlewRateLimiter(OperatorConstants.kJoystickSlewLimit);

private DriveCommands() {}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"fileName": "yagsl-2025.1.3.json",
"fileName": "yagsl-2025.1.3.jwt151.json",
"name": "YAGSL",
"version": "2025.1.3",
"version": "2025.1.3.jwt151",
"frcYear": "2025",
"uuid": "1ccce5a4-acd2-4d18-bca3-4b8047188400",
"mavenUrls": [
Expand All @@ -12,7 +12,7 @@
{
"groupId": "swervelib",
"artifactId": "YAGSL-java",
"version": "2025.1.3"
"version": "2025.1.3.jwt151"
}
],
"requires": [
Expand Down
Loading