mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
commented out system.out.prints in CANTalon.set()
Change-Id: I85bc50c5f1ee7364395eb28d03e3845fe70649c0
This commit is contained in:
@@ -103,7 +103,7 @@ public class CANTalon implements MotorSafety, PIDOutput, SpeedController {
|
||||
* @param outputValue The setpoint value, as described above.
|
||||
*/
|
||||
public void set(double outputValue) {
|
||||
System.out.println("Enabled: " + m_controlEnabled + " Mode: " + m_controlMode);
|
||||
//System.out.println("Enabled: " + m_controlEnabled + " Mode: " + m_controlMode);
|
||||
m_controlMode = ControlMode.PercentVbus;
|
||||
if (m_controlEnabled) {
|
||||
switch (getControlMode()) {
|
||||
@@ -128,7 +128,7 @@ public class CANTalon implements MotorSafety, PIDOutput, SpeedController {
|
||||
break;
|
||||
}
|
||||
}
|
||||
System.out.println("Enabled: " + m_controlEnabled + " Mode: " + m_controlMode);
|
||||
//System.out.println("Enabled: " + m_controlEnabled + " Mode: " + m_controlMode);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user