removed context switch request
(shall be done at end of ISR, so must be performed by caller)
This commit is contained in:
@ -5,8 +5,8 @@ void TaskManagement::requestContextSwitchFromTask() {
|
||||
}
|
||||
|
||||
void TaskManagement::requestContextSwitch(
|
||||
CallContext callContext = CallContext::task) {
|
||||
if(callContext == CallContext::isr) {
|
||||
CallContext callContext = CallContext::TASK) {
|
||||
if(callContext == CallContext::ISR) {
|
||||
// This function depends on the partmacro.h definition for the specific device
|
||||
requestContextSwitchFromISR();
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user