2020-02-26 16:55:35 +01:00
|
|
|
#ifndef FRAMEWORK_OSAL_FREERTOS_TASKMANAGEMENT_H_
|
|
|
|
#define FRAMEWORK_OSAL_FREERTOS_TASKMANAGEMENT_H_
|
|
|
|
|
2020-05-01 14:49:52 +02:00
|
|
|
// maybe this can be part of the TaskFactory.cpp
|
2020-04-23 17:54:41 +02:00
|
|
|
/**
|
|
|
|
* Architecture dependant portmacro.h function call.
|
|
|
|
* Should be implemented in bsp.
|
|
|
|
*/
|
|
|
|
extern "C" void requestContextSwitchFromISR();
|
|
|
|
|
2020-02-26 16:55:35 +01:00
|
|
|
/*!
|
|
|
|
* Used by functions to tell if they are being called from
|
|
|
|
* within an ISR or from a regular task. This is required because FreeRTOS
|
|
|
|
* has different functions for handling semaphores and messages from within an ISR and task.
|
|
|
|
*/
|
2020-03-02 01:00:17 +01:00
|
|
|
|
|
|
|
enum CallContext {
|
|
|
|
task = 0x00,//!< task_context
|
|
|
|
isr = 0xFF //!< isr_context
|
2020-02-28 22:55:25 +01:00
|
|
|
};
|
2020-02-26 16:55:35 +01:00
|
|
|
|
2020-04-23 17:54:41 +02:00
|
|
|
|
2020-02-28 22:55:25 +01:00
|
|
|
class TaskManagement {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* 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 to unblock
|
|
|
|
* and a context switch is required.
|
|
|
|
*/
|
2020-03-02 01:00:17 +01:00
|
|
|
static void requestContextSwitch(CallContext callContext);
|
2020-02-26 16:55:35 +01:00
|
|
|
|
2020-02-28 22:55:25 +01:00
|
|
|
/**
|
|
|
|
* If task preemption in FreeRTOS is disabled, a context switch
|
|
|
|
* can be requested manually by calling this function.
|
|
|
|
*/
|
|
|
|
static void requestContextSwitchFromTask(void);
|
|
|
|
};
|
2020-02-26 16:55:35 +01:00
|
|
|
|
|
|
|
#endif /* FRAMEWORK_OSAL_FREERTOS_TASKMANAGEMENT_H_ */
|