Skip to content

Commit

Permalink
NAR_TalonFX bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ControlsNarwhal committed Mar 30, 2024
1 parent 32a725c commit 9d1ad6d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions 3128-common.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "3128-common",
"version": "1.7.0",
"version": "1.7.2",
"uuid": "ae3fa5a2-78d9-47e8-921a-dba45b889445",
"frcYear": "2024",
"mavenUrls": [
Expand All @@ -12,7 +12,7 @@
{
"groupId": "com.github.Team3128",
"artifactId": "3128-common",
"version": "1.7.0"
"version": "1.7.2"
}
],
"jniDependencies": [],
Expand Down
2 changes: 1 addition & 1 deletion doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1 class="title">3128-common</h1>
</div>
<div class="block"><h1>FRC Team 3128 Robot Control Program Utility Library</h1>
<p>Provides utility classes and functions for FRC robot control programs.</p>
<p>Version 1.7.1 (March 30 2024)</p></div>
<p>Version 1.7.2 (March 30 2024)</p></div>
<div id="all-packages-table">
<div class="caption"><span>Packages</span></div>
<div class="summary-table two-column-summary">
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LibraryVersion=1.7.1
LibraryVersion=1.7.2
archivesGroup = com.github.Team3128
archivesBaseName = 3128-common
jsonFileName = 3128-common.json
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/common/core/swerve/SwerveModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private void configAngleMotor(){
angleMotor.configMotor(angleConfig.motorConfig);
angleMotor.configPID(angleConfig.pidffConfig);
angleMotor.enableContinuousInput(-180, 180);
angleMotor.setPositionStatusFrames();;
angleMotor.setDefaultStatusFrames();
resetToAbsolute();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ public void configPID(PIDFFConfig config) {
PID0.kP = config.kP;
PID0.kI = config.kI;
PID0.kD = config.kD;
PID0.kS = config.kS;
PID0.kV = config.kV;
PID0.kA = config.kA;
PID0.kG = config.kG;
// PID0.kS = config.kS;
// PID0.kV = config.kV;
// PID0.kA = config.kA;
// PID0.kG = config.kG;
configTalonFX(()-> motor.getConfigurator().apply(PID0));
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
<body>
<h1>FRC Team 3128 Robot Control Program Utility Library</h1>
<p>Provides utility classes and functions for FRC robot control programs.</p>
<p>Version 1.7.1 (March 30 2024)</p>
<p>Version 1.7.2 (March 30 2024)</p>
</body>

0 comments on commit 9d1ad6d

Please sign in to comment.