mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
PWM timing change for SP and SRX. added 3us to outer bounds
Change-Id: Idce12f8290b5f5646d0d3b14c2a4414fba3120cd
This commit is contained in:
@@ -32,7 +32,7 @@ public class TalonSRX extends SafePWM implements SpeedController {
|
||||
* - .989ms = full "reverse"
|
||||
*/
|
||||
protected void initTalonSRX() {
|
||||
setBounds(2.001, 1.52, 1.50, 1.48, 0.999);
|
||||
setBounds(2.004, 1.52, 1.50, 1.48, .997);
|
||||
setPeriodMultiplier(PeriodMultiplier.k1X);
|
||||
setRaw(m_centerPwm);
|
||||
setZeroLatch();
|
||||
|
||||
@@ -31,7 +31,7 @@ public class VictorSP extends SafePWM implements SpeedController {
|
||||
* - .989ms = full "reverse"
|
||||
*/
|
||||
protected void initVictorSP() {
|
||||
setBounds(2.001, 1.52, 1.50, 1.48, 0.999);
|
||||
setBounds(2.004, 1.52, 1.50, 1.48, .997);
|
||||
setPeriodMultiplier(PeriodMultiplier.k1X);
|
||||
setRaw(m_centerPwm);
|
||||
setZeroLatch();
|
||||
|
||||
Reference in New Issue
Block a user