Tool/software: Linux
Hi,
TI,Now I want to open the the host messageq que on the dsp1, so I add the code into the ex02_messageq/dsp1/Server.c Server_create() function.
do {
status = MessageQ_open(App_HostMsgQueName, &Module.hostQue);
Task_sleep(1);
} while (status == MessageQ_E_NOTFOUND);
if (status < 0) {
Log_print0(Diags_INFO,"Server_create: Failed opening MessageQ\n");
goto leave;
}
close the hostQue on the Server_delete() function like that:
MessageQ_close(&Module.slaveQue);
But when I run load the server_dsp1.xe66 into dsp1,run the "./app_host DSP1",the DSP1 will stop at MessageQ_open(App_HostMsgQueName, &Module.hostQue);
any suggestion?
BR,
vefone