fsfw/osal/FreeRTOS/TaskManagement.h

65 lines
1.9 KiB
C
Raw Normal View History

2020-08-08 13:15:41 +02:00
#ifndef FRAMEWORK_OSAL_FREERTOS_TASKMANAGEMENT_H_
#define FRAMEWORK_OSAL_FREERTOS_TASKMANAGEMENT_H_
2020-08-25 12:40:06 +02:00
#include "../../returnvalues/HasReturnvaluesIF.h"
2020-08-08 13:15:41 +02:00
extern "C" {
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
}
#include <cstdint>
2020-08-25 12:40:06 +02:00
2020-08-08 13:15:41 +02:00
/**
* Architecture dependant portmacro.h function call.
* Should be implemented in bsp.
*/
extern void vRequestContextSwitchFromISR();
/*!
* Used by functions to tell if they are being called from
2020-08-25 12:40:06 +02:00
* within an ISR or from a regular task. This is required because FreeRTOS
2020-08-08 13:15:41 +02:00
* has different functions for handling semaphores and messages from within
2020-08-25 12:40:06 +02:00
* an ISR and task.
2020-08-08 13:15:41 +02:00
*/
enum class CallContext {
TASK = 0x00,//!< task_context
ISR = 0xFF //!< isr_context
};
class TaskManagement {
public:
2020-08-25 12:40:06 +02:00
/**
2020-08-08 13:15:41 +02:00
* @brief In this function, a function dependant on the portmacro.h header
* function calls to request a context switch can be specified.
* This can be used if sending to the queue from an ISR caused a task
2020-08-25 12:40:06 +02:00
* to unblock and a context switch is required.
2020-08-08 13:15:41 +02:00
*/
static void requestContextSwitch(CallContext callContext);
/**
* If task preemption in FreeRTOS is disabled, a context switch
* can be requested manually by calling this function.
2020-08-25 12:40:06 +02:00
*/
static void vRequestContextSwitchFromTask(void);
2020-08-08 13:15:41 +02:00
/**
* @return The current task handle
*/
static TaskHandle_t getCurrentTaskHandle();
/**
* Get returns the minimum amount of remaining stack space in words
* that was a available to the task since the task started executing.
* Please note that the actual value in bytes depends
* on the stack depth type.
* E.g. on a 32 bit machine, a value of 200 means 800 bytes.
* @return Smallest value of stack remaining since the task was started in
* words.
2020-08-25 12:40:06 +02:00
*/
2020-08-08 13:15:41 +02:00
static size_t getTaskStackHighWatermark(
2020-08-25 12:40:06 +02:00
TaskHandle_t task = nullptr);
2020-08-08 13:15:41 +02:00
};
#endif /* FRAMEWORK_OSAL_FREERTOS_TASKMANAGEMENT_H_ */