Multiple messages have to be transferred by CAN Pack/Unpack
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
If we have several messages to be sent, is there any possibility to set multiple messages on one CAN Pack/Unpack or the only way is to use several modules (for each message one)?
Thanks
0 commentaires
Réponses (1)
Dimitri MANKOV
le 11 Août 2022
Hi Saeed,
As far as I know, you should use one CAN Pack/Unpack block per CAN Message ID.
I hope this is helpful!
Dimitri
1 commentaire
Walter Roberson
le 11 Août 2022
... well, you could in theory use your 64 bits of payload to pack additional messages, if they somehow fit within the 64 bits. However, you should not expect the receiving systems to be able to look inside the payload to recognize the additional packed messages. The CAN messages do not contain information about the meaning of or internal field lengths of the payload.
If, somehow, the information about the length of each sub-field was transmitted with the block, then the amount of memory requried to store the maximum subfield length would be 5 bits (length 0 is not meaningful, so encode (bitlength - 1)). There could be up to 64 fields, each of length 1. The naive storage requirement for such a description would then take 64 * 5 = 320 bits. You would have to start using data compression techniques to pack the length fields; you could definitely need at least 64 bits for the field lengths alone.... In other words, it would not be practical.
Voir également
Catégories
En savoir plus sur Automotive Applications dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!