generated from OakvilleDynamics/frc-robot-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since REV does not provide an official method of automatically recording data from the Spark Max and Spark Flex, we have provided an unofficial alternative for Java and C++ called URCL (Unofficial REV-Compatible Logger). This enables live plotting and logging of all devices similar to CTRE's Tuner X plotting feature and Phoenix 6 signal logger. Power Distribution Hub is also now logged in AdvantageKit.
- Loading branch information
1 parent
18ecb74
commit 3d0d81d
Showing
2 changed files
with
73 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"fileName": "URCL.json", | ||
"name": "URCL", | ||
"version": "2024.0.1", | ||
"frcYear": "2024", | ||
"uuid": "84246d17-a797-4d1e-bd9f-c59cd8d2477c", | ||
"mavenUrls": [ | ||
"https://raw.githubusercontent.com/Mechanical-Advantage/URCL/2024.0.1" | ||
], | ||
"jsonUrl": "https://raw.githubusercontent.com/Mechanical-Advantage/URCL/maven/URCL.json", | ||
"javaDependencies": [ | ||
{ | ||
"groupId": "org.littletonrobotics.urcl", | ||
"artifactId": "URCL-java", | ||
"version": "2024.0.1" | ||
} | ||
], | ||
"jniDependencies": [ | ||
{ | ||
"groupId": "org.littletonrobotics.urcl", | ||
"artifactId": "URCL-driver", | ||
"version": "2024.0.1", | ||
"skipInvalidPlatforms": true, | ||
"isJar": false, | ||
"validPlatforms": [ | ||
"windowsx86-64", | ||
"linuxx86-64", | ||
"linuxathena", | ||
"osxuniversal" | ||
] | ||
} | ||
], | ||
"cppDependencies": [ | ||
{ | ||
"groupId": "org.littletonrobotics.urcl", | ||
"artifactId": "URCL-cpp", | ||
"version": "2024.0.1", | ||
"libName": "URCL", | ||
"headerClassifier": "headers", | ||
"sharedLibrary": false, | ||
"skipInvalidPlatforms": true, | ||
"binaryPlatforms": [ | ||
"windowsx86-64", | ||
"linuxx86-64", | ||
"linuxathena", | ||
"osxuniversal" | ||
] | ||
}, | ||
{ | ||
"groupId": "org.littletonrobotics.urcl", | ||
"artifactId": "URCL-driver", | ||
"version": "2024.0.1", | ||
"libName": "URCLDriver", | ||
"headerClassifier": "headers", | ||
"sharedLibrary": false, | ||
"skipInvalidPlatforms": true, | ||
"binaryPlatforms": [ | ||
"windowsx86-64", | ||
"linuxx86-64", | ||
"linuxathena", | ||
"osxuniversal" | ||
] | ||
} | ||
] | ||
} |