We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f333495 commit 12c6fe0Copy full SHA for 12c6fe0
src/main/java/frc/robot/subsystems/DriveSubsystem.java
@@ -4,6 +4,9 @@
4
5
package frc.robot.subsystems;
6
7
+import edu.wpi.first.hal.FRCNetComm.tInstances;
8
+import edu.wpi.first.hal.FRCNetComm.tResourceType;
9
+import edu.wpi.first.hal.HAL;
10
import edu.wpi.first.math.geometry.Pose2d;
11
import edu.wpi.first.math.geometry.Rotation2d;
12
import edu.wpi.first.math.kinematics.ChassisSpeeds;
@@ -54,6 +57,8 @@ public class DriveSubsystem extends SubsystemBase {
54
57
55
58
/** Creates a new DriveSubsystem. */
56
59
public DriveSubsystem() {
60
+ // Usage reporting for MAXSwerve template
61
+ HAL.report(tResourceType.kResourceType_RobotDrive, tInstances.kRobotDriveSwerve_MaxSwerve);
62
}
63
64
@Override
0 commit comments