From dc6deeb3d09628ac7f4f4fab256dc168bcbf835a Mon Sep 17 00:00:00 2001 From: jonny_ji7 Date: Mon, 13 Mar 2023 20:02:22 +0100 Subject: [PATCH] Stepper: rework resume functionality --- components/DendoStepper/DendoStepper.cpp | 70 ++++++++++++------------ main/guide-stepper.cpp | 8 +-- 2 files changed, 39 insertions(+), 39 deletions(-) diff --git a/components/DendoStepper/DendoStepper.cpp b/components/DendoStepper/DendoStepper.cpp index 53878c9..f77b203 100644 --- a/components/DendoStepper/DendoStepper.cpp +++ b/components/DendoStepper/DendoStepper.cpp @@ -117,41 +117,35 @@ timer_avail: ESP_ERROR_CHECK(timer_isr_callback_add(conf.timer_group, conf.timer_idx, xISRwrap, this, 0)); // add callback fn to run when alarm is triggrd } + esp_err_t DendoStepper::runPos(int32_t relative) { //TODO only enable when actually moving if (ctrl.status == DISABLED) // if motor is disabled, enable it enableMotor(); - bool newDir = (relative < 0); // CCW if <0, else set CW - printf("runpos start -- steps: %d, remaining: %d, status: %d, olddir: %d, newdir: %d\n", relative, ctrl.stepsRemaining, ctrl.status, ctrl.dir, newDir); + setDir(relative < 0); // set CCW if <0, else set CW + if (!relative) // why would u call it with 0 wtf return ESP_ERR_NOT_SUPPORTED; if (ctrl.status > IDLE) { //currently moving - if (ctrl.dir == newDir){ //current direction is the same - //ctrl.statusPrev = ctrl.status; //update previous status - 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); - ESP_ERROR_CHECK(timer_set_alarm_value(conf.timer_group, conf.timer_idx, ctrl.stepInterval)); // set HW timer alarm to stepinterval - } else { //direction has changed - //direction change not supported TODO wait for decel finish / queue? - STEP_LOGE("DendoStepper", "DIRECTION HOT-CHANGE NOT SUPPORTED - Finising previous move, this command will be ignored"); - return ESP_ERR_NOT_SUPPORTED; - } - } - else { //current state is IDLE - //ctrl.statusPrev = ctrl.status; //update previous status - ctrl.status = ACC; - setDir(relative < 0); // set CCW if <0, else set CW - calc(abs(relative)); // calculate velocity profile - ESP_ERROR_CHECK(timer_set_alarm_value(conf.timer_group, conf.timer_idx, ctrl.stepInterval)); // set HW timer alarm to stepinterval - ESP_ERROR_CHECK(timer_start(conf.timer_group, conf.timer_idx)); // start the timer + 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); + ESP_ERROR_CHECK(timer_set_alarm_value(conf.timer_group, conf.timer_idx, ctrl.stepInterval)); // set HW timer alarm to stepinterval } - printf("runpos end -- steps: %d, status: %d, olddir: %d, newdir: %d\n", relative, ctrl.status, ctrl.dir, newDir); + else { //current state is IDLE + //ctrl.statusPrev = ctrl.status; //update previous status + ctrl.status = ACC; + calc(abs(relative)); // calculate velocity profile + ESP_ERROR_CHECK(timer_set_alarm_value(conf.timer_group, conf.timer_idx, ctrl.stepInterval)); // set HW timer alarm to stepinterval + ESP_ERROR_CHECK(timer_start(conf.timer_group, conf.timer_idx)); // start the timer + } + + //printf("runpos end -- steps: %d, status: %d, olddir: %d, newdir: %d\n", relative, ctrl.status, ctrl.dir, newDir); currentPos += relative; //(target position / not actual) return ESP_OK; } @@ -165,26 +159,31 @@ esp_err_t DendoStepper::runPosMm(int32_t relative) return runPos(relative * ctrl.stepsPerMm); } +//customized: if already running and direction is the same immediately pass to runPos esp_err_t DendoStepper::runAbs(uint32_t position) { - //if (getState() > IDLE) // we are already moving, so stop it - // stop(); - //while (getState() > IDLE) - //{ - // // waiting for idle, watchdog should take care of inf loop if it occurs - // vTaskDelay(1); - //} // shouldnt take long tho - - if (position == currentPos) // we cant go anywhere - return 0; + //exit if nothing to do + if (position == currentPos) return 0; //already at position + //calculate steps necessary int32_t relativeSteps = 0; relativeSteps = (int32_t)position - currentPos; + //wait if direction needs to change + if (getState() > IDLE){//already moving + bool newDir = (relativeSteps < 0); // CCW if <0, else set CW + if (ctrl.dir != newDir){ //direction differs + STEP_LOGE("DendoStepper", "DIRECTION HOT-CHANGE NOT SUPPORTED - Waiting for move to finish..."); + while (getState() > IDLE) vTaskDelay(1); //wait for move to finish + } + } + + //call runPos with new target position ESP_LOGI("DendoStepper", "Cur: %llu move %d", currentPos, relativeSteps); return runPos(relativeSteps); // run to new position } + esp_err_t DendoStepper::runAbsMm(uint32_t position) { if (ctrl.stepsPerMm == 0) @@ -404,7 +403,8 @@ void DendoStepper::calc(uint32_t targetSteps) ESP_LOGI("Dendostepper", "Computing new speed"); ctrl.speed = sqrt(2 * targetSteps * ((ctrl.dec * ctrl.acc) / (ctrl.dec + ctrl.acc))); - ctrl.accSteps = 0.5 * ctrl.acc * (ctrl.speed / ctrl.acc) * (ctrl.speed / ctrl.acc); + //ctrl.accSteps = 0.5 * ctrl.acc * (ctrl.speed / ctrl.acc) * (ctrl.speed / ctrl.acc); + ctrl.accSteps = 0.5 * ctrl.acc * (ctrl.speed / ctrl.acc) * (ctrl.speed / ctrl.acc) * (ctrl.speed - ctrl.currentSpeed) / ctrl.speed; ctrl.decSteps = 0.5 * ctrl.dec * (ctrl.speed / ctrl.dec) * (ctrl.speed / ctrl.dec); } @@ -412,7 +412,7 @@ void DendoStepper::calc(uint32_t targetSteps) ctrl.coastEnd = targetSteps - ctrl.decSteps; ctrl.targetSpeed = ctrl.speed; - ctrl.accInc = ctrl.targetSpeed / (double)ctrl.accSteps; + ctrl.accInc = (ctrl.targetSpeed - ctrl.currentSpeed) / (double)ctrl.accSteps; ctrl.decInc = ctrl.targetSpeed / (double)ctrl.decSteps; ctrl.currentSpeed = ctrl.accInc; diff --git a/main/guide-stepper.cpp b/main/guide-stepper.cpp index d225710..3542176 100644 --- a/main/guide-stepper.cpp +++ b/main/guide-stepper.cpp @@ -71,10 +71,10 @@ void travelSteps(int stepsTarget){ while (stepsToGo != 0){ //--- wait if direction changed --- - if (dirPrev != dir){ - ESP_LOGW(TAG, " dir-change detected - waiting for move to finish \n "); - while(step.getState() != 1) vTaskDelay(1); //wait for move to finish - } + //if (dirPrev != dir){ + // ESP_LOGW(TAG, " dir-change detected - waiting for move to finish \n "); + // while(step.getState() != 1) vTaskDelay(1); //wait for move to finish + //} //--- currently moving right --- if (stepp_direction == true){ //currently moving right