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.
Hi team,
Here's an issue from the customer may need your help:
How does the DCAN change the length of the data when it is transmitted? CAN has a maximum frame size of 8 bytes and sometimes the data returned from the slave to the host is not necessarily eight as it might also be dynamic. So the customer would like to know how to modify this length when transmitting it?
If directly using the function can_sendMessage(UINT32_t base, UINT32_t objID, UINT16_t msgLen,const UINT16_t *msgData); the parameter msgLen does not work and even set the parameter to 6,the actual master receive length is still 8.
If using can_sendMessage_updateDLC(UINT32_t base, UINT32_t objID, UINT16_t msgLen,const UINT16_t.*MsgData; to transmit data, the host will report error with data exception.
Could you help check this case? Thanks.
Best Regards,
Cherry
How does the DCAN change the length of the data when it is transmitted?
The length of data that is to be transmitted is configured via the DLC field.
sometimes the data returned from the slave to the host is not necessarily eight as it might also be dynamic.
True, a Receiver will not know the data length of a frame to be received. It can be anything from 0 to 8. More importantly, it need not know. That information is embedded in the DLC field of the message to be received. The DLC is only applicable for data to be transmitted, not data to be received. In other words, DLC field is a "don't care" for a receive message object. Since the DLC field is embedded in the transmitted frame, the receive message object can figure out how many bytes are being transmitted (and hence to be received).
So the customer would like to know how to modify this length when transmitting it?
The parameter "msgLen" is used to pass the DLC value.
the parameter msgLen does not work and even set the parameter to 6,the actual master receive length is still 8.
Are you saying 8 bytes is always transmitted even if msgLen is set for 6 for a transmit message object? Or are you saying 8 bytes is read from a receive message object even when the DLC value of a received frame is 6?
the host will report error with data exception.
What is the error? Please translate it into English.
If directly using the function can_sendMessage(UINT32_t base, UINT32_t objID, UINT16_t msgLen,const UINT16_t *msgData); the parameter msgLen does not work and even set the parameter to 6,the actual master receive length is still 8.
Using this function directly for different lengths will not work as it does not update the transmit message object as Hareesh as mentioned.
If using can_sendMessage_updateDLC(UINT32_t base, UINT32_t objID, UINT16_t msgLen,const UINT16_t.*MsgData; to transmit data, the host will report error with data exception.
That is the reason why this API was developed. However, there is a bug in this API, which has been since fixed which will appear in the next release. For a workaround to this issue please refer to the following thread:
Thanks.