01-20-2006 07:46 AM
01-20-2006 09:28 AM
Towards the end of your file, you have the line:
LogEnetData (fp, Message.MsgSize, (unsigned char *)&Message.CsciSource);
You should be using the .Data field of your structure, not the .CsciSource one. Like this:
LogEnetData (fp, Message.MsgSize, Message.Data);
JR
01-20-2006 01:24 PM
I am using the CsciSource field because that's where the logging needs to start
Hurst C.