Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Phoenix 6 drivetrain #7

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
b68e495
Pheonix 6 Swerve Drivetrain with pathplanner.
sleepyghost-zzz Nov 22, 2024
daa3303
Merge branch 'main' into phoenix-6-drivetrain
sleepyghost-zzz Nov 26, 2024
250d125
Commit for Pull Request
sleepyghost-zzz Nov 27, 2024
3ca0356
Merge branch 'phoenix-6-drivetrain' of https://github.com/team401/202…
sleepyghost-zzz Nov 27, 2024
cd3a362
Updated build.gradle for CI requirements
sleepyghost-zzz Nov 27, 2024
4b3bfd8
Working on spotless gradle. i hate gradle, it sucks
sleepyghost-zzz Nov 27, 2024
d00393e
Un-Nuked phoenix-6-drivetrain branch
sleepyghost-zzz Nov 27, 2024
be6c05c
gradle changes
sleepyghost-zzz Nov 27, 2024
d3e6537
Made some changes based off of review
sleepyghost-zzz Dec 1, 2024
ac8147a
Added 2 Joysticks for drivetrain
sleepyghost-zzz Dec 2, 2024
2e92103
Using DriveWithJoysticks command that is copy pasted from coppercore.
minhnguyenbhs Dec 3, 2024
fbc28dc
(WIP) Using Advantage Kit Talon FX example
minhnguyenbhs Dec 12, 2024
52800d4
Refactor drivetrain joystick controls, and used deadband
sleepyghost-zzz Jan 3, 2025
0be0388
Using new path planner version
sleepyghost-zzz Jan 3, 2025
fa26fe2
Spotless Build
sleepyghost-zzz Jan 3, 2025
c182296
Removed Deadband
sleepyghost-zzz Jan 4, 2025
03c1034
Updated WPILIB to 2025.1.1 Release
sleepyghost-zzz Jan 6, 2025
2e41e86
(WIP) setGoalSpeeds n' stuff
sleepyghost-zzz Jan 7, 2025
ff3dd56
(WIP) Creating Modified DriveWithJoystick and DriveTemplate
sleepyghost-zzz Jan 8, 2025
c66ebdf
Did it!! All of drivewith joysticks and drive template works and it u…
sleepyghost-zzz Jan 9, 2025
9d2308b
Spotless Build
sleepyghost-zzz Jan 9, 2025
0f172d8
Phoenix 6 Drive Spotless Build
sleepyghost-zzz Jan 9, 2025
10f7756
Using coppercore for drive, waiting on updated coppercore release
sleepyghost-zzz Jan 11, 2025
4bdd527
move field relative to setGoalSpeeds
linglejack06 Jan 13, 2025
87aabc2
fix pathplanner error relating to setGoalSpeeds
linglejack06 Jan 13, 2025
040d2b2
add comments and move runVelocity to end of periodic (after pose update)
linglejack06 Jan 13, 2025
e9fd3c1
increment coppercore version + fix auto config more;
linglejack06 Jan 13, 2025
c5357fd
Merge branch 'main' into phoenix-6-drivetrain
sleepyghost-zzz Jan 14, 2025
4df2818
Merge Conflict Resolution
sleepyghost-zzz Jan 14, 2025
b325103
Un-Nuked Drive, Removed Duplicates
sleepyghost-zzz Jan 14, 2025
c9e7b02
Change team number
aidnem Jan 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/new-feature.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ The purpose of this addition is to X.

**Project Scope**
- [ ] Add X
- [ ] Implement X
- [ ] Implement X
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,6 @@ hs_err_pid*
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

Expand Down Expand Up @@ -170,7 +167,7 @@ out/

# Simulation GUI and other tools window save file
networktables.json
simgui.json
simgui*.json
*-window.json

# Simulation data log directory
Expand All @@ -182,3 +179,6 @@ ctre_sim/
# clangd
/.cache
compile_commands.json

# Version file
src/main/java/frc/robot/BuildConstants.java
jkleiber marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"richardwillis.vscode-spotless-gradle"
]
}
8 changes: 2 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"type": "wpilib",
"name": "WPILib Desktop Debug",
"request": "launch",
"desktop": true,
"desktop": true
},
{
"type": "wpilib",
"name": "WPILib roboRIO Debug",
"request": "launch",
"desktop": false,
"desktop": false
}
]
}
18 changes: 15 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,24 @@
{
"name": "WPIlibUnitTests",
"workingDirectory": "${workspaceFolder}/build/jni/release",
"vmargs": [ "-Djava.library.path=${workspaceFolder}/build/jni/release" ],
"vmargs": [
"-Djava.library.path=${workspaceFolder}/build/jni/release"
],
"env": {
"LD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release" ,
"LD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release",
"DYLD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release"
}
},
null
],
"java.test.defaultConfig": "WPIlibUnitTests"
"java.test.defaultConfig": "WPIlibUnitTests",
"spotlessGradle.format.enable": true,
"spotlessGradle.diagnostics.enable": false,
"editor.defaultFormatter": "richardwillis.vscode-spotless-gradle",
"[json]": {
"editor.defaultFormatter": "richardwillis.vscode-spotless-gradle"
},
"[java]": {
"editor.defaultFormatter": "richardwillis.vscode-spotless-gradle"
}
}
10 changes: 5 additions & 5 deletions .wpilib/wpilib_preferences.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": false,
"currentLanguage": "java",
"projectYear": "2025beta",
"teamNumber": 401
}
"enableCppIntellisense": false,
"currentLanguage": "java",
sleepyghost-zzz marked this conversation as resolved.
Show resolved Hide resolved
"projectYear": "2025beta",
"teamNumber": 401
}
Loading
Loading