Based on the examples provided I managed to build a function to read the RPMsg on the M4:
static int rpmsg_str_read(char* message)
{
int message_lenght;
if(message == NULL){
return -1;
}
/* If no message available, return zero */
if (msg_count == 0){
return 0;
}
/* Copy string from RPMsg rx buffer */
message_lenght = app_msg[app_idx].len;
assert(message_lenght < sizeof(app_buf));
memcpy(app_buf, app_msg[app_idx].data, message_lenght);
memcpy(message, app_buf, message_lenght);// copy app_buf to string input pointer "message"
app_buf[message_lenght] = 0; /* End string by '\0' */
message[message_lenght] = 0; /* End string by '\0' */
/* Release held RPMsg rx buffer */
rpmsg_release_rx_buffer(app_chnl, app_msg[app_idx].data);
app_idx = (app_idx + 1) % STRING_BUFFER_CNT;
/* Once a message is consumed, minus the msg_count and might enable MU interrupt again */
app_rpmsg_enable_rx_int(true);
return message_lenght;
}
Howerver I also need a “rpmsg_str_write()” to be able to write to the Linux core. I could not make it work ()trying both rpmsg_sendto_nocopy() and rpmsg_send() and all examples perform the write inside the read. Is there a restriction or a catch on just writing to the A7?
Regarding rpmsg_rtos example, you are free to send/receive simultaneously. send is put between recv_nocopy and recv_nocopy_free to avoid the need for FIFO or receive message storage. But you may switch from recv_nocopy + recv_nocopy_free to just recv. No issues doing simultaneous send / receive from different FreeRTOS tasks.
Bare metal examples rpmsg_read_cb() callback routine should put received data into FIFO and exit immediately. If rx interrupt is disabled inside of receive callback, then it should be reenabled immediately in the same callback routine, and not … in the main loop. If you disable rx for longer, Cortex-A side has chances to stall. And if rpmsg A->M buffers are exhausted, virtio?? may suspend transmission for 15 seconds…
So if you fix receive part with FIFO and disable/enable of interrupt (is it really required?), you will fix as well simultaneous rx/tx.
Why just don’t use rpmsg_rtos_recv() / rpmsg_rtos_send() as it done at pingpong_freertos demo ?
And what do you mean saying all examples perform the write inside the read ? Could you point to file name/ line(s) of code?