Hello,
I have a problem converting binary data to a cluster. I have to create a VI that reads out some parameter from a device, which is connected via RS232. I get an array of 128 Byte from the device. The data has the following (C-)structure:
-----
struct PARAM
{
char cVersion[64];
float fDeviceID;
float fChannels;
float fSensor;
float fTrigger;
float fConst[5];
char cReserved[28];
}
-----
How can I convert the binary array to a cluster? I created a cluster (see attachment), but I couldn't connect it with the "Type Cast" VI. Has anyone an idea how to solve this problem?
Thanks, Martin