Skip to content

Commit 28ac91d

Browse files
committed
(12/28/25) shit hit the fan... but MapleSim works!!
For some reason this was using 2024 versions for some things and I had to update the repo into 2025 which was... annoying. On the bright side, I added working drivetrain code that sims MapleSim correctly (no slow zones, and interaction with field elements).
1 parent 8d3bb80 commit 28ac91d

File tree

264 files changed

+22063
-552
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

264 files changed

+22063
-552
lines changed

.vscode/launch.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@
22
"version": "0.2.0",
33
"configurations": [
44
{
5-
"type": "wpilib",
6-
"name": "WPILib Desktop Debug",
5+
"type": "java",
6+
"name": "Current File",
77
"request": "launch",
8-
"desktop": true
8+
"mainClass": "${file}"
99
},
1010
{
11-
"type": "wpilib",
12-
"name": "WPILib roboRIO Debug",
11+
"type": "java",
12+
"name": "Main",
1313
"request": "launch",
14-
"desktop": false
14+
"mainClass": "frc.robot.Main",
15+
"projectName": "DrWomp-AdvantageKit"
1516
}
1617
]
1718
}

.vscode/settings.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,11 @@
6464
],
6565
"editor.defaultFormatter": "richardwillis.vscode-spotless-gradle",
6666
"[json]": {
67-
"editor.defaultFormatter": "richardwillis.vscode-spotless-gradle"
67+
"editor.defaultFormatter": "vscode.json-language-features"
6868
},
6969
"[java]": {
7070
"editor.defaultFormatter": "richardwillis.vscode-spotless-gradle"
71-
}
71+
},
72+
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx16G -Xms100m -Xlog:disable",
73+
"java.format.settings.url": "eclipse-formatter.xml"
7274
}

.wpilib/wpilib_preferences.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"currentLanguage": "none",
32
"enableCppIntellisense": false,
4-
"projectYear": "none",
5-
"teamNumber": 555
3+
"currentLanguage": "java",
4+
"projectYear": "2025",
5+
"teamNumber": 2813
66
}

0 commit comments

Comments
 (0)