Add mutex to chairAdjust object - fix potential crashes

This commit is contained in:
jonny 2024-09-05 13:21:46 +02:00
parent c19d053867
commit e23d37df4c
2 changed files with 126 additions and 88 deletions

View File

@ -7,6 +7,7 @@ extern "C"
#include "chairAdjust.hpp" #include "chairAdjust.hpp"
#define MUTEX_TIMEOUT (10000 / portTICK_PERIOD_MS)
//--- gloabl variables --- //--- gloabl variables ---
// strings for logging the rest state // strings for logging the rest state
@ -21,12 +22,12 @@ static const char * TAG = "chair-adjustment";
//============================= //=============================
//======== constructor ======== //======== constructor ========
//============================= //=============================
cControlledRest::cControlledRest(gpio_num_t gpio_up_f, gpio_num_t gpio_down_f, uint32_t travelDurationMs, const char * name_f, float defaultPosition):travelDuration(travelDurationMs){ cControlledRest::cControlledRest(gpio_num_t gpio_up_f, gpio_num_t gpio_down_f, uint32_t travelDurationMs, const char * name_f, float defaultPosition): gpio_up(gpio_up_f), gpio_down(gpio_down_f), travelDuration(travelDurationMs){
strcpy(name, name_f); strcpy(name, name_f);
gpio_up = gpio_up_f;
gpio_down = gpio_down_f;
positionNow = defaultPosition; positionNow = defaultPosition;
positionTarget = positionNow; positionTarget = positionNow;
// recursive mutex necessary, because handle() method calls setState() which both have the same mutex
mutex = xSemaphoreCreateRecursiveMutex();
init(); init();
} }
@ -95,6 +96,9 @@ void cControlledRest::updatePosition(){
//============================ //============================
void cControlledRest::setState(restState_t targetState) void cControlledRest::setState(restState_t targetState)
{ {
// lock the mutex before accessing shared variables
if (xSemaphoreTakeRecursive(mutex, MUTEX_TIMEOUT) == pdTRUE)
{
// TODO: drop this section? // TODO: drop this section?
// check if actually changed // check if actually changed
if (targetState == state) if (targetState == state)
@ -115,9 +119,9 @@ void cControlledRest::setState(restState_t targetState)
// activate handle task when turning on (previous state is off) // activate handle task when turning on (previous state is off)
if (state == REST_OFF) if (state == REST_OFF)
xTaskNotifyGive(taskHandle); //activate handle task that stops the rest-motor again xTaskNotifyGive(taskHandle); // activate handle task that stops the rest-motor again
//apply new state // apply new state
ESP_LOGI(TAG, "[%s] switching from state '%s' to '%s'", name, restStateStr[state], restStateStr[targetState]); ESP_LOGI(TAG, "[%s] switching from state '%s' to '%s'", name, restStateStr[state], restStateStr[targetState]);
switch (targetState) switch (targetState)
{ {
@ -135,18 +139,30 @@ void cControlledRest::setState(restState_t targetState)
gpio_set_level(gpio_down, 0); gpio_set_level(gpio_down, 0);
gpio_set_level(gpio_up, 0); gpio_set_level(gpio_up, 0);
updatePosition(); updatePosition();
positionTarget = positionNow; //disable resuming - no unexpected pos when incrementing positionTarget = positionNow; // disable resuming - no unexpected pos when incrementing
break; break;
} }
state = targetState; state = targetState;
// Release the mutex
xSemaphoreGiveRecursive(mutex);
}
else
{
ESP_LOGE(TAG, "mutex timeout in setState() -> RESTART");
esp_restart();
}
} }
//========================== //==========================
//==== setTargetPercent ==== //==== setTargetPercent ====
//========================== //==========================
void cControlledRest::setTargetPercent(float targetPercent){ void cControlledRest::setTargetPercent(float targetPercent)
{
// lock the mutex before accessing shared variables
if (xSemaphoreTakeRecursive(mutex, MUTEX_TIMEOUT) == pdTRUE)
{
positionTarget = targetPercent;
float positionTargetPrev = positionTarget; float positionTargetPrev = positionTarget;
positionTarget = targetPercent; positionTarget = targetPercent;
@ -157,7 +173,7 @@ void cControlledRest::setTargetPercent(float targetPercent){
positionTarget = 0; positionTarget = 0;
// ignore if unchanged // ignore if unchanged
//if (positionTarget == positionTargetPrev){ // if (positionTarget == positionTargetPrev){
// ESP_LOGI(TAG, "[%s] Target position unchanged at %.2f%%", name, positionTarget); // ESP_LOGI(TAG, "[%s] Target position unchanged at %.2f%%", name, positionTarget);
// return; // return;
//} //}
@ -173,17 +189,27 @@ void cControlledRest::setTargetPercent(float targetPercent){
setState(REST_DOWN); setState(REST_DOWN);
else // already at exact position else // already at exact position
setState(REST_OFF); setState(REST_OFF);
// Release the mutex
xSemaphoreGiveRecursive(mutex);
}
else
{
ESP_LOGE(TAG, "mutex timeout while waiting in setTargetPercent -> RESTART");
esp_restart();
}
} }
//====================== //======================
//======= handle ======= //======= handle =======
//====================== //======================
// handle automatic stop when target position is reached, should be run repeatedly in a task // handle automatic stop when target position is reached, should be run repeatedly in a task
#define TRAVEL_TIME_LIMIT_ADDITION_MS 2000 // traveling longer into limit compensates inaccuracies in time based position tracking #define TRAVEL_TIME_LIMIT_ADDITION_MS 2000 // traveling longer into limit compensates inaccuracies in time based position tracking
void cControlledRest::handle(){ void cControlledRest::handle()
{
// lock the mutex before accessing shared variables
if (xSemaphoreTakeRecursive(mutex, MUTEX_TIMEOUT) == pdTRUE)
{
// nothing to do when not running atm // nothing to do when not running atm
// TODO: turn on automatically when position != target? // TODO: turn on automatically when position != target?
if (state == REST_OFF) if (state == REST_OFF)
@ -198,14 +224,22 @@ void cControlledRest::handle(){
timeTarget += TRAVEL_TIME_LIMIT_ADDITION_MS; timeTarget += TRAVEL_TIME_LIMIT_ADDITION_MS;
// target reached // target reached
if (timeRan >= timeTarget){ if (timeRan >= timeTarget)
{
ESP_LOGW(TAG, "[%s] handle: reached target run-time (%dms/%dms) for position %.2f%% -> stopping", name, timeRan, timeTarget, positionTarget); ESP_LOGW(TAG, "[%s] handle: reached target run-time (%dms/%dms) for position %.2f%% -> stopping", name, timeRan, timeTarget, positionTarget);
setState(REST_OFF); setState(REST_OFF);
} }
// Release the mutex
xSemaphoreGiveRecursive(mutex);
}
else
{
ESP_LOGE(TAG, "mutex timeout while waiting in handle() -> RESTART");
esp_restart();
}
} }
//============================ //============================
//===== chairAdjust_task ===== //===== chairAdjust_task =====
//============================ //============================

View File

@ -3,6 +3,7 @@ extern "C"
{ {
#include "freertos/FreeRTOS.h" #include "freertos/FreeRTOS.h"
#include "freertos/task.h" #include "freertos/task.h"
#include "freertos/semphr.h"
#include "driver/gpio.h" #include "driver/gpio.h"
} }
@ -38,11 +39,14 @@ private:
void init(); void init();
void updatePosition(); void updatePosition();
SemaphoreHandle_t mutex;
char name[32]; char name[32];
gpio_num_t gpio_up; const gpio_num_t gpio_up;
gpio_num_t gpio_down; const gpio_num_t gpio_down;
restState_t state;
const uint32_t travelDuration = 12000; const uint32_t travelDuration = 12000;
restState_t state;
uint32_t timestamp_lastPosUpdate = 0; uint32_t timestamp_lastPosUpdate = 0;
float positionTarget = 0; float positionTarget = 0;
float positionNow = 0; float positionNow = 0;