In Simulink, How to decode CAN data with length greater than 8?

조회 수: 1 (최근 30일)
Wei
Wei 2024년 8월 16일
편집: akshatsood 2024년 8월 17일
There is an issue using CAN Unpack to decode CAN message with length greater than 8. Is there any other recommanded way to decode CAN data? For starter, I have used bit extract and bitwise AND Shift Arithmetic to extract bits in simulink. I'm not sure if matlab function in simulink can also handle this if it's possible.

채택된 답변

akshatsood
akshatsood 2024년 8월 16일
Dear @Wei
I understand that you want to decode CAN data with a length greater than 8. In my understanding, you can substitute the "CAN Unpack" block with the "CAN FD Unpack" block. CAN FD (Flexible Datarate) is an extension of the original CAN protocol, designed to support higher data rates and larger data payloads. For more information about this block, please visit the following documentation.
I hop this helps.
  댓글 수: 2
Wei
Wei 2024년 8월 16일
Using "CAN FD Unpack" can work with constrainted length. That is, '0' to '8', '12', '16', '20', '24', '32', '48', '64'. However, with multi-package CAN data information, the length is an unknown value, which mean it could be a length that is outside of the values allowed in CAN FD Unpack.
Thanks.
akshatsood
akshatsood 2024년 8월 17일
편집: akshatsood 2024년 8월 17일
Dear @Wei,
It sounds like you are dealing with a situation where the CAN data length is variable and may not fit within the constraints of standard CAN FD lengths. In such cases, handling multi-frame messages can be a bit complex, as it requires assembling and disassembling messages across multiple CAN frames.
Achieving this in Simulink typically involves designing a model that handles the segmentation and reassembly of messages. The model comprises of Stateflow and MATLAB Function blocks to define the logic of protocol.
You can define states for handling different parts of protocol, such as start of the message, continuation and end of the message. MATLAB Function blocks can be used to implement segmentation and reassembling.
I hope this provides some direction.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Vehicle Network Toolbox에 대해 자세히 알아보기

태그

제품


릴리스

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by