Skip to content

Commit dc8ae44

Browse files
Merge pull request #57 from iron-claw-972/EBR-COMP
EBR Code
2 parents 9e56b2c + 2d20c5f commit dc8ae44

18 files changed

+58
-46
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ deploy {
3434
jvmArgs.add("-Dcom.sun.management.jmxremote.local.only=false")
3535
jvmArgs.add("-Dcom.sun.management.jmxremote.ssl=false")
3636
jvmArgs.add("-Dcom.sun.management.jmxremote.authenticate=false")
37+
jvmArgs.add("-XX:+HeapDumpOnOutOfMemoryError")
38+
jvmArgs.add("-XX:HeapDumpPath=/home/lvuser/frc-usercode.hprof")
3739
jvmArgs.add("-Djava.rmi.server.hostname=10.9.72.2") // Replace TE.AM with team number
3840
}
3941

src/main/deploy/pathplanner/paths/Gronud P2 Mirrored.path

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@
8080
}
8181
],
8282
"globalConstraints": {
83-
"maxVelocity": 3.0,
84-
"maxAcceleration": 3.0,
83+
"maxVelocity": 3.5,
84+
"maxAcceleration": 3.5,
8585
"maxAngularVelocity": 540.0,
8686
"maxAngularAcceleration": 720.0,
8787
"nominalVoltage": 12.0,

src/main/deploy/pathplanner/paths/Gronud P2.path

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
],
8282
"globalConstraints": {
8383
"maxVelocity": 3.5,
84-
"maxAcceleration": 3.5,
84+
"maxAcceleration": 4.0,
8585
"maxAngularVelocity": 540.0,
8686
"maxAngularAcceleration": 720.0,
8787
"nominalVoltage": 12.0,

src/main/deploy/pathplanner/paths/GroundB #6 Mirrored.path

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
}
6565
],
6666
"globalConstraints": {
67-
"maxVelocity": 3.0,
68-
"maxAcceleration": 3.0,
67+
"maxVelocity": 3.5,
68+
"maxAcceleration": 3.5,
6969
"maxAngularVelocity": 540.0,
7070
"maxAngularAcceleration": 720.0,
7171
"nominalVoltage": 12.0,

src/main/deploy/pathplanner/paths/GroundB #6.path

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
],
6666
"globalConstraints": {
6767
"maxVelocity": 3.5,
68-
"maxAcceleration": 3.5,
68+
"maxAcceleration": 4.0,
6969
"maxAngularVelocity": 540.0,
7070
"maxAngularAcceleration": 720.0,
7171
"nominalVoltage": 12.0,

src/main/deploy/pathplanner/paths/P 1 Mirrored.path

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
}
6868
],
6969
"globalConstraints": {
70-
"maxVelocity": 3.0,
71-
"maxAcceleration": 3.0,
70+
"maxVelocity": 2.0,
71+
"maxAcceleration": 2.0,
7272
"maxAngularVelocity": 540.0,
7373
"maxAngularAcceleration": 720.0,
7474
"nominalVoltage": 12.0,

src/main/deploy/pathplanner/paths/P 1.path

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
}
6868
],
6969
"globalConstraints": {
70-
"maxVelocity": 3.5,
71-
"maxAcceleration": 3.5,
70+
"maxVelocity": 2.0,
71+
"maxAcceleration": 2.0,
7272
"maxAngularVelocity": 540.0,
7373
"maxAngularAcceleration": 720.0,
7474
"nominalVoltage": 12.0,

src/main/deploy/pathplanner/paths/P 3 Mirrored.path

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
}
4646
],
4747
"globalConstraints": {
48-
"maxVelocity": 2.5,
49-
"maxAcceleration": 2.5,
48+
"maxVelocity": 3.5,
49+
"maxAcceleration": 3.5,
5050
"maxAngularVelocity": 540.0,
5151
"maxAngularAcceleration": 720.0,
5252
"nominalVoltage": 12.0,

src/main/deploy/pathplanner/paths/P 3.path

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
],
4747
"globalConstraints": {
4848
"maxVelocity": 3.5,
49-
"maxAcceleration": 3.5,
49+
"maxAcceleration": 4.0,
5050
"maxAngularVelocity": 540.0,
5151
"maxAngularAcceleration": 720.0,
5252
"nominalVoltage": 12.0,

src/main/deploy/pathplanner/paths/P 5 Mirrored.path

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
}
4646
],
4747
"globalConstraints": {
48-
"maxVelocity": 3.0,
49-
"maxAcceleration": 3.0,
48+
"maxVelocity": 3.5,
49+
"maxAcceleration": 3.5,
5050
"maxAngularVelocity": 540.0,
5151
"maxAngularAcceleration": 720.0,
5252
"nominalVoltage": 12.0,

0 commit comments

Comments
 (0)