Upgrading to 2025.7.0

This commit is contained in:
thenetworkgrinch
2025-02-22 06:15:56 +00:00
parent 62f8236678
commit 4016ee2190
41 changed files with 2237 additions and 557 deletions

View File

@@ -20,7 +20,7 @@ public class AnalogGyroSwerve extends SwerveIMU
*/
private final AnalogGyro imu;
/**
* Mutable {@link AngularVelocity} for readings.
* Mutable {@link MutAngularVelocity} for readings.
*/
private final MutAngularVelocity yawVel = new MutAngularVelocity(0, 0, DegreesPerSecond);
/**
@@ -49,6 +49,11 @@ public class AnalogGyroSwerve extends SwerveIMU
SmartDashboard.putData(imu);
}
@Override
public void close() {
imu.close();
}
/**
* Reset IMU to factory default.
*/