Tool/software: TI-RTOS
Whats is the maximum message length in the RemoteMsg (RemoteProc)?
I know that the maximum buffer length is defined by `RPMSG_BUF_SIZE`, but the header is difficult to predict.
Inside the `pru_rpmsg_send()` there is the checking `if (len > (RPMSG_BUF_SIZE - sizeof(struct pru_rpmsg_hdr)))`. But the library header file `pru_rpmsg.h` could be updated with the definition `#define RPMSG_MSG_SIZE (RPMSG_BUF_SIZE - sizeof(struct pru_rpmsg_hdr))` to provide to the user of the lib one treatment to long messages.