Convert CAN Message data - array of uint8 to double:

8 vues (au cours des 30 derniers jours)
mlaudu
mlaudu le 24 Déc 2020
Commenté : mlaudu le 29 Déc 2020
Hi,
I have an IO611 CAN Read block in my Simulink model that reads messages from a single CAN channel. The CAN messages originate from several sources each message with a unique ID. I see that I can extract the message ID and data payload for each message directly from the CAN Read block by using the 'RAW' data message type. The data paylod is however in the form of a uint8(8) array. To get the equivalent double value is it enough to use a 'double' conversion block or do I have to do some other elaborate conversion? Thanks for any insight.

Réponses (1)

Madhav Thakker
Madhav Thakker le 29 Déc 2020
Modifié(e) : Madhav Thakker le 29 Déc 2020
Hi Mlaudu,
You can use data conversion block that takes as input uint8 array and returns a double array with same dimension.
Hope this helps.
  3 commentaires
Walter Roberson
Walter Roberson le 29 Déc 2020
MATLAB function block that takes in the uint8 array and typecast() it to double.
Just watch out for the byte order. typecast() will assume the byte order is the same as the system being executed on, which would be "little endian" .
mlaudu
mlaudu le 29 Déc 2020
This idea works. Use a MATLAB function block and typecast the 8-byte array to double. Thank you.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by