Conversation
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
WalkthroughAdds debounce and double-tap timing constants and converts multiple button triggers to require multi-press timing; adds a debounced CAMERAS_DISCONNECTED_TRIGGER (backed by RobotPoseEstimator.hasUpdateFromCameras()) and binds it to a new INDICATE_CAMERAS_DISCONNECTED_COMMAND that rumbles the driver controller. RobotPoseEstimator now tracks hasUpdateFromCameras and renamed initialize() to initializeFieldWidget(). Exposes ClimbCommands.IS_CLIMBING as a LoggedNetworkBoolean, adjusts climb commands/state names (CLIMB_PREPARE→PREPARE_CLIMB, CLIMB_DOWN→RELEASE_CLIMB), adds ignoreDisable on some intake commands, and switches a Swerve synchronization lock. 🚥 Pre-merge checks | ❌ 3❌ Failed checks (1 warning, 2 inconclusive)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
src/main/java/frc/trigon/robot/constants/OperatorConstants.java
Outdated
Show resolved
Hide resolved
src/main/java/frc/trigon/robot/poseestimation/robotposeestimator/RobotPoseEstimator.java
Show resolved
Hide resolved
src/main/java/frc/trigon/robot/commands/commandfactories/ClimbCommands.java
Outdated
Show resolved
Hide resolved
src/main/java/frc/trigon/robot/poseestimation/robotposeestimator/RobotPoseEstimator.java
Show resolved
Hide resolved
src/main/java/frc/trigon/robot/commands/commandclasses/ShootingSafeDriveCommand.java
Outdated
Show resolved
Hide resolved
src/main/java/frc/trigon/robot/commands/commandclasses/ShootingSafeDriveCommand.java
Outdated
Show resolved
Hide resolved
src/main/java/frc/trigon/robot/commands/commandclasses/ShootingSafeDriveCommand.java
Show resolved
Hide resolved
There was a problem hiding this comment.
Actionable comments posted: 2
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
src/main/java/frc/trigon/robot/misc/MatchTracker.java (1)
48-57: 🧹 Nitpick | 🔵 TrivialExtract the shift boundaries into named constants.
This removes magic numbers and clarifies the time windows.As per coding guidelines: Magic numbers and strings should be named constants.
No description provided.