From c738ac96b1e244f432a9adc716c1c16700d41160 Mon Sep 17 00:00:00 2001 From: jonny_l480 Date: Thu, 30 May 2024 09:33:53 +0200 Subject: [PATCH] Fix MASSAGE-mode messing up acceleration config - do not update nvs with low accel when changing to massage - store and restore previous value when changing from/to massage mode --- board_single/main/control.cpp | 16 ++++++++++------ common/motorctl.cpp | 8 +++++--- common/motorctl.hpp | 2 +- 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/board_single/main/control.cpp b/board_single/main/control.cpp index 954ce31..8a4f8fb 100644 --- a/board_single/main/control.cpp +++ b/board_single/main/control.cpp @@ -431,6 +431,8 @@ void controlledArmchair::handleTimeout() //function to change to a specified control mode void controlledArmchair::changeMode(controlMode_t modeNew) { + // variable to store configured accel limit before entering massage mode, to restore it later + static uint32_t massagePreviousAccel = motorLeft->getFade(fadeType_t::ACCEL); // exit if target mode is already active if (mode == modeNew) @@ -478,9 +480,9 @@ void controlledArmchair::changeMode(controlMode_t modeNew) // enable downfading (set to default value) motorLeft->setFade(fadeType_t::DECEL, true); motorRight->setFade(fadeType_t::DECEL, true); - // set upfading to default value - motorLeft->setFade(fadeType_t::ACCEL, true); - motorRight->setFade(fadeType_t::ACCEL, true); + // restore previously set acceleration limit + motorLeft->setFade(fadeType_t::ACCEL, massagePreviousAccel); + motorRight->setFade(fadeType_t::ACCEL, massagePreviousAccel); // reset frozen input state freezeInput = false; break; @@ -537,12 +539,14 @@ void controlledArmchair::changeMode(controlMode_t modeNew) ESP_LOGW(TAG, "switching to MASSAGE mode -> reducing fading"); uint32_t shake_msFadeAccel = 200; // TODO: move this to config + // save currently set normal acceleration config (for restore when leavinge MASSAGE again) + massagePreviousAccel = motorLeft->getFade(fadeType_t::ACCEL); // disable downfading (max. deceleration) motorLeft->setFade(fadeType_t::DECEL, false); motorRight->setFade(fadeType_t::DECEL, false); - // reduce upfading (increase acceleration) - motorLeft->setFade(fadeType_t::ACCEL, shake_msFadeAccel); - motorRight->setFade(fadeType_t::ACCEL, shake_msFadeAccel); + // reduce upfading (increase acceleration) but do not update nvs + motorLeft->setFade(fadeType_t::ACCEL, shake_msFadeAccel, false); + motorRight->setFade(fadeType_t::ACCEL, shake_msFadeAccel, false); break; } diff --git a/common/motorctl.cpp b/common/motorctl.cpp index e362e4d..eafd324 100644 --- a/common/motorctl.cpp +++ b/common/motorctl.cpp @@ -620,17 +620,19 @@ uint32_t controlledMotor::getFadeDefault(fadeType_t fadeType){ //function for editing or enabling the fading/ramp of the motor control //set/update fading duration/amount -void controlledMotor::setFade(fadeType_t fadeType, uint32_t msFadeNew){ +void controlledMotor::setFade(fadeType_t fadeType, uint32_t msFadeNew, bool writeToNvs){ //TODO: mutex for msFade variable also used in handle function switch(fadeType){ case fadeType_t::ACCEL: ESP_LOGW(TAG, "[%s] changed fade-up time from %d to %d", config.name, config.msFadeAccel, msFadeNew); - writeAccelDuration(msFadeNew); + if (writeToNvs) + writeAccelDuration(msFadeNew); break; case fadeType_t::DECEL: ESP_LOGW(TAG, "[%s] changed fade-down time from %d to %d",config.name, config.msFadeDecel, msFadeNew); // write new value to nvs and update the variable - writeDecelDuration(msFadeNew); + if (writeToNvs) + writeDecelDuration(msFadeNew); break; } } diff --git a/common/motorctl.hpp b/common/motorctl.hpp index 433419d..55d13e8 100644 --- a/common/motorctl.hpp +++ b/common/motorctl.hpp @@ -54,7 +54,7 @@ class controlledMotor { uint32_t getFade(fadeType_t fadeType); //get currently set acceleration or deceleration fading time uint32_t getFadeDefault(fadeType_t fadeType); //get acceleration or deceleration fading time from config void setFade(fadeType_t fadeType, bool enabled); //enable/disable acceleration or deceleration fading - void setFade(fadeType_t fadeType, uint32_t msFadeNew); //set acceleration or deceleration fade time + void setFade(fadeType_t fadeType, uint32_t msFadeNew, bool writeToNvs = true); //set acceleration or deceleration fade time and write it to nvs by default bool toggleFade(fadeType_t fadeType); //toggle acceleration or deceleration on/off float getCurrentA() {return cSensor.read();}; //read current-sensor of this motor (Ampere)