Tool/software:
Hi TI expert,
1. i am using J722s evm and sdk v11 example code as environment. sdcard, spl boot mode.
2. my target is to send data from mcu20 to mcu10 using rpmsg api.
3. i refer to https://software-dl.ti.com/mcu-plus-sdk/esd/AM64X/08_00_00_21/exports/docs/api_guide_am64x/DRIVERS_IPC_RPMESSAGE_PAGE.html to create a demo code
4. it works between mcu10 <--> wkup mcu , but in mcu20, it cant send to mcu10.
5. in mcu 10, i make debug var that confirm the ipc_notity is triggered, which is in "RPMessage_notifyCallback"
and in mcu20, send api RPMessage_send() return 0, mean success, and after send 256 times, it return -2
here is my code:
in MCU20 main.c
```
```
[MCU2_0] 32.892974 s: ipctx running 0, ep:45
[MCU2_0] 33.893054 s: ipctx running 0, ep:45
[MCU2_0] 34.893134 s: ipctx running 0, ep:45
[MCU2_0] 35.893213 s: ipctx running 0, ep:45
[MCU2_0] 36.893294 s: ipctx running 0, ep:45
in MCU10 , modify from ipc rpmsg demo code.
```
```
[IPC RPMSG ECHO] Version: REL.MCUSDK.09.00.00.16 (Aug 14 2025 18:30:52):
[IPC RPMSG ECHO] Remote Core waiting for messages at end pointss 14 ... !!!
[IPC RPMSG ECHO] Remote Core waiting for messages at end pointss 44 ... !!!
#### no data received forever #########
my question is:
1. how to send data from mcu20 to mcu10 using rpmsg api.
thanks