|
@@ -150,8 +150,8 @@ void Atm_AccelStepper::action( int id ) {
|
|
|
push(connectors, ON_CHANGESTATE, 0, state(), 0);
|
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
|
_isHoming = 0;
|
|
|
- Serial.print("target ");
|
|
|
- Serial.println(_targetStep);
|
|
|
+ // Serial.print("target ");
|
|
|
+ // Serial.println(_targetStep);
|
|
|
stepper->moveTo(_targetStep);
|
|
|
// stepper->computeNewSpeed();
|
|
|
//stepper_update();
|
|
@@ -204,9 +204,9 @@ void Atm_AccelStepper::action( int id ) {
|
|
|
stepper->setCurrentPosition(0);
|
|
|
_currentStep = 0;
|
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
|
- Serial.println("homing low done");
|
|
|
+ // Serial.println("homing low done");
|
|
|
}
|
|
|
- else{Serial.println("homing low failed");}
|
|
|
+ else{};//Serial.println("homing low failed");}
|
|
|
trigger(EVT_EMERGENCY_STOP);
|
|
|
|
|
|
return;
|
|
@@ -229,9 +229,9 @@ void Atm_AccelStepper::action( int id ) {
|
|
|
if(last_trigger == EVT_ON_LIMIT_HIGH) {
|
|
|
_maxStep = stepper->currentPosition();
|
|
|
_currentStep = _maxStep;
|
|
|
- Serial.println("homing high done");
|
|
|
+ //Serial.println("homing high done");
|
|
|
}
|
|
|
- else{Serial.println("homing high failed");}
|
|
|
+ else{};//Serial.println("homing high failed");}
|
|
|
_targetStep = _currentStep;
|
|
|
return;
|
|
|
case ENT_LIMIT_LOW:
|