Hi All,
with the below lines in a program [below lines forms code on CORE1][CORE0 and CORE1 are attached through IPC]. what i see is Num_count1 and Num_count2 both are zero.
Num_count1 = MessageQ_count(messageQ);
Task_sleep(SLEEP_UNIT);
core1_status = MessageQ_get(messageQ, (MessageQ_Msg *)&MyMsgx, MessageQ_FOREVER);
Num_count2 = MessageQ_count(messageQ);
I have created a MessageQ on CORE1 and it is being opened by CORE0 to input messages. I see MessageQ_put and get being successfull with return status being zero. but still i see both counts as zero..
please help me in solving/understanding this issue
Thanks
R.C.Reddy