From 8d2428d28576e08da07af79659620376b1e4e964 Mon Sep 17 00:00:00 2001 From: jonny_l480 Date: Mon, 13 Mar 2023 20:25:10 +0100 Subject: [PATCH] Stepper: Add calc debug output ISSUES - sometimes deadlock at direction change waits for idle state in runAbs function, but stepper is not really moving anymore ISR does not change to idle or state changed afterwards? - every EXTEND operation results in a motor stop thus when extending alot is stopped only ramping up and down when encoder stop after several extend attempts the stepper moves all the remaining steps successfully --- components/DendoStepper/DendoStepper.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/DendoStepper/DendoStepper.cpp b/components/DendoStepper/DendoStepper.cpp index f77b203..33126f5 100644 --- a/components/DendoStepper/DendoStepper.cpp +++ b/components/DendoStepper/DendoStepper.cpp @@ -130,7 +130,7 @@ esp_err_t DendoStepper::runPos(int32_t relative) return ESP_ERR_NOT_SUPPORTED; if (ctrl.status > IDLE) { //currently moving - ctrl.status = ctrl.status==COAST ? COAST : ACC; //stay at coast otherwise switch to ACC + //ctrl.status = ctrl.status==COAST ? COAST : ACC; //stay at coast otherwise switch to ACC ctrl.stepsRemaining = ctrl.stepsToGo - ctrl.stepCnt; calc(abs(relative + ctrl.stepsRemaining)); //calculate new velolcity profile for new+remaining steps ESP_LOGW("DendoStepper", "EXTEND running movement (stepsRemaining: %d + stepsNew: %d)", ctrl.stepsRemaining, relative); @@ -420,5 +420,7 @@ void DendoStepper::calc(uint32_t targetSteps) ctrl.stepInterval = TIMER_F / ctrl.currentSpeed; ctrl.stepsToGo = targetSteps; + printf("CALC: speedNow=%.1f, speedTarget=%.1f, accEnd=%d, coastEnd=%d, accSteps=%d, accInc=%.3f\n", + ctrl.currentSpeed, ctrl.targetSpeed, ctrl.accEnd, ctrl.coastEnd, ctrl.accSteps, ctrl.accInc); STEP_LOGI("calc", "acc end:%u coastend:%u stepstogo:%u speed:%f acc:%f int: %u", ctrl.accEnd, ctrl.coastEnd, ctrl.stepsToGo, ctrl.speed, ctrl.acc, ctrl.stepInterval); }