2020-02-26 16:55:35 +01:00
|
|
|
/**
|
|
|
|
* @file TaskManagement.cpp
|
|
|
|
*
|
|
|
|
* @date 26.02.2020
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <framework/osal/FreeRTOS/TaskManagement.h>
|
2020-04-23 17:54:41 +02:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include "FreeRTOS.h"
|
2020-02-26 16:55:35 +01:00
|
|
|
#include "task.h"
|
2020-04-23 17:54:41 +02:00
|
|
|
}
|
2020-02-26 16:55:35 +01:00
|
|
|
|
2020-02-28 22:55:25 +01:00
|
|
|
void TaskManagement::requestContextSwitchFromTask() {
|
2020-02-26 16:55:35 +01:00
|
|
|
vTaskDelay(0);
|
|
|
|
}
|
|
|
|
|
2020-03-02 01:00:17 +01:00
|
|
|
void TaskManagement::requestContextSwitch(CallContext callContext = CallContext::task) {
|
|
|
|
if(callContext == CallContext::isr) {
|
2020-02-26 16:55:35 +01:00
|
|
|
// This function depends on the partmacro.h definition for the specific device
|
2020-04-23 17:54:41 +02:00
|
|
|
requestContextSwitchFromISR();
|
2020-02-26 16:55:35 +01:00
|
|
|
} else {
|
|
|
|
requestContextSwitchFromTask();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-28 22:55:25 +01:00
|
|
|
|
|
|
|
|