Skip to content
This repository was archived by the owner on Jan 15, 2021. It is now read-only.

Updating number of PID slots for sparkmax #150

Open
wants to merge 1 commit into
base: master
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ if(hasProperty('maven_repo'))
throw new GradleException("This isn't supported anymore")
}

ext.maven_version = "2020-0.0.5"
ext.maven_version = "2020-0.0.6"
if(hasProperty('maven_version'))
{
ext.maven_version = maven_version
Expand Down
2 changes: 1 addition & 1 deletion fast_build.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
gradlew build -x checkstyleMain -x checkstyleTest -x findbugsMain -x findbugsTest -x pmdMain -x pmdTest %*
gradlew build -x checkstyleMain -x checkstyleTest -x spotbugsMain -x spotbugsTest -x pmdMain -x pmdTest %*
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class RevSpeedControllerSimWrapper extends BaseCanSmartSpeedController

public RevSpeedControllerSimWrapper(int aCanHandle)
{
super(aCanHandle, "Rev", 1);
super(aCanHandle, "Rev", 4);
}

@Override
Expand Down