Skip to content

Commit 44deb79

Browse files
committed
updated vendor dependencies
1 parent 5d1fed3 commit 44deb79

File tree

4 files changed

+8
-39
lines changed

4 files changed

+8
-39
lines changed

lib5k/src/main/java/io/github/frc5024/common_drive/DriveTrainBase.java

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import io.github.frc5024.lib5k.logging.RobotLogger;
3232
import io.github.frc5024.lib5k.control_loops.ExtendedPIDController;
3333
import io.github.frc5024.lib5k.hardware.common.drivebase.IDifferentialDrivebase;
34+
import io.github.frc5024.lib5k.hardware.ctre.motors.CTREMotorFactory;
3435

3536
/**
3637
* The base for all drivetrains.
@@ -101,6 +102,8 @@ public enum States {
101102
*/
102103
public DriveTrainBase(DriveTrainConfig config) {
103104

105+
CTREMotorFactory.createTalonFX(1).set(50);
106+
104107
// Set config
105108
this.config = config;
106109

lib5k/src/main/java/io/github/frc5024/lib5k/hardware/ctre/motors/CTREMotorFactory.java

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ public static ExtendedTalonFX createTalonFX(int id, CTREConfig config) {
110110
);
111111
}
112112

113+
113114
talon.stopMotor();
114115

115116
return talon;

lib5k/vendordeps/navx_frc.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
{
22
"fileName": "navx_frc.json",
33
"name": "KauaiLabs_navX_FRC",
4-
"version": "4.0.428",
4+
"version": "4.0.442",
55
"uuid": "cb311d09-36e9-4143-a032-55bb2b94443b",
66
"mavenUrls": [
77
"https://repo1.maven.org/maven2/"
88
],
9-
"jsonUrl": "https://www.kauailabs.com/dist/frc/2021/navx_frc.json",
9+
"jsonUrl": "https://www.kauailabs.com/dist/frc/2022/navx_frc.json",
1010
"javaDependencies": [
1111
{
1212
"groupId": "com.kauailabs.navx.frc",
1313
"artifactId": "navx-java",
14-
"version": "4.0.428"
14+
"version": "4.0.442"
1515
}
1616
],
1717
"jniDependencies": [],
1818
"cppDependencies": [
1919
{
2020
"groupId": "com.kauailabs.navx.frc",
2121
"artifactId": "navx-cpp",
22-
"version": "4.0.428",
22+
"version": "4.0.442",
2323
"headerClassifier": "headers",
2424
"sourcesClassifier": "sources",
2525
"sharedLibrary": false,

vendordeps/navx_frc.json

-35
This file was deleted.

0 commit comments

Comments
 (0)