Part Number:AM5718
Tool/software: TI-RTOS
I modified IPC example from"ipc_3_47_01_00\examples\DRA7XX_linux_elf\ex02_messageq"
host code:
/* create local message queue (inbound messages) */
MessageQ_Params_init(&msgqParams);
Module.hostQue[IPU1] = MessageQ_create(Ipc_Ipu1HostMsgQueName, &msgqParams);
if(Module.hostQue[IPU1] == NULL)
{
return ;
}
Ipu1 code:
/* open the hostQueId message queues */
do
{
status = MessageQ_open(Ipc_Ipu1HostMsgQueName, &Module.hostQueId);
Task_sleep(1);
} while(status != MessageQ_S_SUCCESS);
Startup Linux system , If host does not run , Ipu1 will do MessageQ_open repeatly , and Linux will report "virtio_rpmsg_bus virtio0: msg received with no recipien" from debug UART port.
Is there any solution to let UART do not report that strings?