Skip to content
This repository was archived by the owner on Nov 23, 2024. It is now read-only.

small fix and update vendordeps #4

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public Command getAutonomousCommand() {
speeds.vyMetersPerSecond,
speeds.omegaRadiansPerSecond,
false),
true, // Whether or not to mirror the path based on alliance (this assumes the path is created for the blue alliance)
() -> true, // Whether or not to mirror the path based on alliance (this assumes the path is created for the blue alliance)
m_robotDrive // The subsystem(s) to require, typically your drive subsystem only
);

Expand All @@ -118,4 +118,4 @@ public Command getAutonomousCommand() {
public void periodic() {
m_field.setRobotPose(m_robotDrive.getPose());
}
}
}
26 changes: 22 additions & 4 deletions vendordeps/ChoreoLib.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"fileName": "ChoreoLib.json",
"name": "ChoreoLib",
"version": "2024.0.4",
"version": "2024.1.2",
"uuid": "287cff6e-1b60-4412-8059-f6834fb30e30",
"frcYear": "2024",
"mavenUrls": [
Expand All @@ -11,8 +11,8 @@
"javaDependencies": [
{
"groupId": "com.choreo.lib",
"artifactId": "ChoreoLib",
"version": "2024.0.4"
"artifactId": "ChoreoLib-java",
"version": "2024.1.2"
},
{
"groupId": "com.google.code.gson",
Expand All @@ -21,5 +21,23 @@
}
],
"jniDependencies": [],
"cppDependencies": []
"cppDependencies": [
{
"groupId": "com.choreo.lib",
"artifactId": "ChoreoLib-cpp",
"version": "2024.1.2",
"libName": "ChoreoLib",
"headerClassifier": "headers",
"sharedLibrary": false,
"skipInvalidPlatforms": true,
"binaryPlatforms": [
"windowsx86-64",
"linuxx86-64",
"osxuniversal",
"linuxathena",
"linuxarm32",
"linuxarm64"
]
}
]
}