Skip to content

Commit

Permalink
Fix format issues and delete logs
Browse files Browse the repository at this point in the history
  • Loading branch information
keckothedragon committed May 10, 2024
1 parent 9378750 commit 97b33fc
Show file tree
Hide file tree
Showing 44 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@

# Log file
*.log
*.wpilog
advantagekit/logs
logs

# BlueJ files
*.ctxt
Expand Down
Binary file removed advantagekit/logs/Log_24-05-02_13-23-24.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_13-25-54.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_13-27-16.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_13-30-57.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_13-32-56.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_13-34-11.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_13-35-33.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_14-05-18.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_14-06-59.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_14-08-19.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_14-09-20.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_14-13-05.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_14-19-14.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_14-22-00.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_14-58-00.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_15-02-55.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_15-05-15.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_15-06-59.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_15-07-49.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_15-49-50.wpilog
Binary file not shown.
Binary file removed advantagekit/logs/Log_24-05-02_15-52-42.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_172328.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_172555.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_172718.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_173059.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_173412.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_173535.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_180520.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_180710.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_180822.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_180922.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_181345.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_181916.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_182239.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_185854.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_190307.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_190520.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_190707.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_190751.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_195024.wpilog
Binary file not shown.
Binary file removed logs/FRC_20240502_195257.wpilog
Binary file not shown.
Binary file removed logs/FRC_TBD_68992208bb6a5cd3.wpilog
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/drive/Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void periodic() {
if (speedSetpoint != null) {
// Scale velocity based on turn error
//
// When the error is 90°, the velocity setpoint should be 0. As the wheel turns
// When the error is 90 degrees, the velocity setpoint should be 0. As the wheel turns
// towards the setpoint, its velocity should increase. This is achieved by
// taking the component of the velocity in the direction of the setpoint.
double adjustSpeedSetpoint = speedSetpoint * Math.cos(turnFeedback.getPositionError());
Expand Down

0 comments on commit 97b33fc

Please sign in to comment.