This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/TMS320F28379D: Error in RecvIpcData from IPC.c

Part Number: TMS320F28379D
Other Parts Discussed in Thread: CONTROLSUITE

Tool/software: Code Composer Studio

Hello,

In the controlsuite delivered Ipc.c file (v210) is an error in the function RecvIpcData, which makes is unable to receive data. In the original function the command

memcpy(RECV_MSG_RAM, recv_buf, word_length);

is placed. As you can see the target and the source are switched. The correct way seems to be

memcpy(recv_buf, RECV_MSG_RAM, word_length);

Am I right? Is this already reported? I searched for errors but didn't find anything.

Kind Regards,

Martin