Part Number: TMDS64GPEVM
Hi,
I am using am64x evm board, and trying to figure out how can i send string data to a remote core using ipc notify.
IPC Notify message sending api is:
IpcNotify_sendMsg (uint32_t remoteCoreId, uint16_t remoteClientId, uint32_t msgValue, uint32_t waitForFifoNotFull)
Its message value type is an int type and its own example uses int values to send.
But if i need to send an string value, is there any way to do this?
IPC RPMessage sending api is:
RPMessage_send (void *data, uint16_t dataLen, uint16_t remoteCoreId, uint16_t remoteEndPt, uint16_t localEndPt, uint32_t timeout)
and we can send any data with rpmessage message send api.
Is there any reason about the difference?
And is there any way to send preferred data type with ipc notify?
Thanks in advance