architecture dependant call delcared external
This commit is contained in:
parent
328737d0ad
commit
fc4199c3b1
@ -8,15 +8,9 @@
|
|||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#include "FreeRTOS.h"
|
#include "FreeRTOS.h"
|
||||||
#include "portmacro.h"
|
|
||||||
#include "task.h"
|
#include "task.h"
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* TODO: This stuff is hardware and architecture and mission dependant...
|
|
||||||
* Maybe there is a better solution? The request ContextSwitch function
|
|
||||||
* could be declared external for example.
|
|
||||||
*/
|
|
||||||
void TaskManagement::requestContextSwitchFromTask() {
|
void TaskManagement::requestContextSwitchFromTask() {
|
||||||
vTaskDelay(0);
|
vTaskDelay(0);
|
||||||
}
|
}
|
||||||
@ -24,7 +18,7 @@ void TaskManagement::requestContextSwitchFromTask() {
|
|||||||
void TaskManagement::requestContextSwitch(CallContext callContext = CallContext::task) {
|
void TaskManagement::requestContextSwitch(CallContext callContext = CallContext::task) {
|
||||||
if(callContext == CallContext::isr) {
|
if(callContext == CallContext::isr) {
|
||||||
// This function depends on the partmacro.h definition for the specific device
|
// This function depends on the partmacro.h definition for the specific device
|
||||||
portYIELD_FROM_ISR();
|
requestContextSwitchFromISR();
|
||||||
} else {
|
} else {
|
||||||
requestContextSwitchFromTask();
|
requestContextSwitchFromTask();
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,12 @@
|
|||||||
#ifndef FRAMEWORK_OSAL_FREERTOS_TASKMANAGEMENT_H_
|
#ifndef FRAMEWORK_OSAL_FREERTOS_TASKMANAGEMENT_H_
|
||||||
#define FRAMEWORK_OSAL_FREERTOS_TASKMANAGEMENT_H_
|
#define FRAMEWORK_OSAL_FREERTOS_TASKMANAGEMENT_H_
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Architecture dependant portmacro.h function call.
|
||||||
|
* Should be implemented in bsp.
|
||||||
|
*/
|
||||||
|
extern "C" void requestContextSwitchFromISR();
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Used by functions to tell if they are being called from
|
* Used by functions to tell if they are being called from
|
||||||
* within an ISR or from a regular task. This is required because FreeRTOS
|
* within an ISR or from a regular task. This is required because FreeRTOS
|
||||||
@ -18,6 +24,7 @@ enum CallContext {
|
|||||||
isr = 0xFF //!< isr_context
|
isr = 0xFF //!< isr_context
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
class TaskManagement {
|
class TaskManagement {
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user