The problem is in Notify_sendEvent() on Core3, the status returned by the Notify_sendevent() is 0 stating "Success" but it doesn't able to notify the remote core i.e core2 to execute the void Core2_notifyEventISR(uint16_t procId, uint16_t lineId,uint32_t eventId,uint32_t arg,...
status = Notify_sendEvent(1, INTERRUPT_LINE, EVENTID, i,TRUE); if (status < 0) { continue; } i++; } Semaphore_pend(semHandle,BIOS_WAIT_FOREVER); } 然后核0通过Notify_sendEvent向核1发送EVENTID号事件,来触发核1进入cbFxn函数中,但是不知道为什么单步运行过这个函数,并不能触发...