hello,
i am trying to work with ipc to establish a communication between two cores. the program compiled correctly.
when i run the program no events are sent ( i am using the function Notify_sendEvent() ). While trying to solve the problem, i wanted to make sure the IDs are correct.
So i used the following code:
int i;
i = MultiProc_self();
System_printf("slave started, id %d\n",i);
the issue is i get always 0 whatever core i am loading the program on. I set the MultiProc module option numProcessors to 2 .
someone can help me on this?
thanx.