Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d90d584
need to switch
theVerySharpFlat Jan 25, 2024
1bd8890
bump lib
theVerySharpFlat Jan 26, 2024
dc641c4
Merge branch 'main' into feature/drivetrain
theVerySharpFlat Jan 27, 2024
1b0f949
enforce counter clockwise positive in swerve modules
theVerySharpFlat Jan 27, 2024
1984bee
add odometry
theVerySharpFlat Jan 28, 2024
20ffb98
move odometry to separate thread
theVerySharpFlat Jan 28, 2024
4718657
initial pathplanner auto setup
theVerySharpFlat Jan 29, 2024
f2f9acf
BOT: Apply Formatting
theVerySharpFlat Jan 29, 2024
47cd688
properly enforce postive y axis and counterclockwise rotation
theVerySharpFlat Feb 1, 2024
4c500d9
change deploy dir
theVerySharpFlat Feb 1, 2024
288fc38
switch over to autos instead of paths
theVerySharpFlat Feb 1, 2024
784570c
BOT: Apply Formatting
theVerySharpFlat Feb 1, 2024
c09ef87
fix autonomousCommand type issue
theVerySharpFlat Feb 1, 2024
b184ce9
BOT: Apply Formatting
theVerySharpFlat Feb 1, 2024
96fefe9
avoid frc2::CommandPtr default constructor
theVerySharpFlat Feb 2, 2024
ff3acd2
delete uneeded directory
theVerySharpFlat Feb 4, 2024
cfb2b95
fix sparkmax deprecations
theVerySharpFlat Feb 4, 2024
1918883
BOT: Apply Formatting
theVerySharpFlat Feb 4, 2024
8726721
WIP
theVerySharpFlat Feb 7, 2024
3eb29dc
BOT: Apply Formatting
theVerySharpFlat Feb 7, 2024
05f4800
fix joystick axes that were screwing up swerve
theVerySharpFlat Feb 7, 2024
7016ef2
Merge branch 'feature/drivetrain' of https://github.com/rambunction43…
theVerySharpFlat Feb 7, 2024
9bca1f5
BOT: Apply Formatting
theVerySharpFlat Feb 7, 2024
d00aa4a
fix thread_local StatusSignals
theVerySharpFlat Feb 8, 2024
7f8140d
BOT: Apply Formatting
theVerySharpFlat Feb 8, 2024
7ab2469
add gyro reset feature, debug swerve drift, integrated sensor option …
theVerySharpFlat Feb 21, 2024
5a59bcb
BOT: Apply Formatting
theVerySharpFlat Feb 21, 2024
4e8b34f
testing, don't use for driver practice
theVerySharpFlat Feb 26, 2024
be97795
BOT: Apply Formatting
theVerySharpFlat Feb 26, 2024
eab4e86
add kinematics fix
theVerySharpFlat Mar 1, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@
"robotWidth": 0.9,
"robotLength": 0.9,
"holonomicMode": true,
"pathFolders": [
"New Folder"
],
"pathFolders": [],
"autoFolders": [],
"defaultMaxVel": 3.0,
"defaultMaxVel": 10.0,
"defaultMaxAccel": 3.0,
"defaultMaxAngVel": 540.0,
"defaultMaxAngAccel": 720.0,
"maxModuleSpeed": 4.5
"maxModuleSpeed": 10.0
}
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ deploy {

// Static files artifact
frcStaticFileDeploy(getArtifactTypeClass('FileTreeArtifact')) {
files = project.fileTree('src/deploy')
files = project.fileTree('src/main/deploy')
directory = '/home/lvuser/deploy'
}
}
Expand Down Expand Up @@ -116,3 +116,11 @@ model {
}
}
}

task listrepos {
doLast {
println "Repositories:"
project.repositories.each { println "Name: " + it.name + "; url: " + it.url }
}
}

17 changes: 0 additions & 17 deletions lib/librmb-main/.editorconfig

This file was deleted.

23 changes: 0 additions & 23 deletions lib/librmb-main/.github/workflows/doxygen-publish.yml

This file was deleted.

88 changes: 0 additions & 88 deletions lib/librmb-main/.github/workflows/merge.yml

This file was deleted.

40 changes: 0 additions & 40 deletions lib/librmb-main/.github/workflows/pr.yml

This file was deleted.

Loading