forked from espressif/esp-idf
Fix interrupting task on other CPU that has lower prio than current task on current CPU
This commit is contained in:
@@ -632,7 +632,7 @@ static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB, TaskFunction_t pxTaskCode
|
||||
*/
|
||||
void taskYIELD_OTHER_CORE( BaseType_t xCoreID, UBaseType_t uxPriority )
|
||||
{
|
||||
TCB_t *curTCB = xTaskGetCurrentTaskHandle();
|
||||
TCB_t *curTCB = pxCurrentTCB[xCoreID];
|
||||
BaseType_t i;
|
||||
|
||||
if (xCoreID != tskNO_AFFINITY) {
|
||||
|
Reference in New Issue
Block a user