Skip to content

Commit

Permalink
updated vendor dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wm-c committed Feb 1, 2022
1 parent 5d1fed3 commit 44deb79
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 39 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
import io.github.frc5024.lib5k.logging.RobotLogger;
import io.github.frc5024.lib5k.control_loops.ExtendedPIDController;
import io.github.frc5024.lib5k.hardware.common.drivebase.IDifferentialDrivebase;
import io.github.frc5024.lib5k.hardware.ctre.motors.CTREMotorFactory;

/**
* The base for all drivetrains.
Expand Down Expand Up @@ -101,6 +102,8 @@ public enum States {
*/
public DriveTrainBase(DriveTrainConfig config) {

CTREMotorFactory.createTalonFX(1).set(50);

// Set config
this.config = config;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ public static ExtendedTalonFX createTalonFX(int id, CTREConfig config) {
);
}


talon.stopMotor();

return talon;
Expand Down
8 changes: 4 additions & 4 deletions lib5k/vendordeps/navx_frc.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"fileName": "navx_frc.json",
"name": "KauaiLabs_navX_FRC",
"version": "4.0.428",
"version": "4.0.442",
"uuid": "cb311d09-36e9-4143-a032-55bb2b94443b",
"mavenUrls": [
"https://repo1.maven.org/maven2/"
],
"jsonUrl": "https://www.kauailabs.com/dist/frc/2021/navx_frc.json",
"jsonUrl": "https://www.kauailabs.com/dist/frc/2022/navx_frc.json",
"javaDependencies": [
{
"groupId": "com.kauailabs.navx.frc",
"artifactId": "navx-java",
"version": "4.0.428"
"version": "4.0.442"
}
],
"jniDependencies": [],
"cppDependencies": [
{
"groupId": "com.kauailabs.navx.frc",
"artifactId": "navx-cpp",
"version": "4.0.428",
"version": "4.0.442",
"headerClassifier": "headers",
"sourcesClassifier": "sources",
"sharedLibrary": false,
Expand Down
35 changes: 0 additions & 35 deletions vendordeps/navx_frc.json

This file was deleted.

0 comments on commit 44deb79

Please sign in to comment.