Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
fix: Use only odometry and swerve subsystems for testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenheroux committed Mar 19, 2024
1 parent d465a5a commit e66d510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/RobotConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ public enum Subsystem {
Subsystem.SHOOTER,
Subsystem.SWERVE);

public static final Set<Subsystem> REAL_SUBSYSTEMS = ALL_SUBSYSTEMS;
public static final Set<Subsystem> REAL_SUBSYSTEMS = EnumSet.of(Subsystem.ODOMETRY, Subsystem.SWERVE);
}

0 comments on commit e66d510

Please sign in to comment.