<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">



<div style="word-wrap:break-word;color:rgb(0,0,0);font-size:14px;font-family:Calibri,sans-serif">
<div>Anyone here have some experience with this datatype?</div></div></blockquote><div><br>We have done something similar to the existing access functions:<br><br>#define EC_READ_SINGLE(DATA)    ((float)(*((float *)((DATA)))))<br>#define EC_WRITE_SINGLE(DATA, VAL) \<br>do { \<br>    *((float*) ((DATA))) = (float) (VAL); \<br>} while (0)<br><br><br></div><div>Note that the byte order may be different. In that case you can use cpu_to_le32 and friends. For us it worked since we also made the slave that generated the data.<br><br><br></div><div>J.<br> <br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word;color:rgb(0,0,0);font-size:14px;font-family:Calibri,sans-serif">
<div><br>
</div>
<div>Thanks,</div>
<div><br>
</div>
<div>Steven</div>
</div>

<br>_______________________________________________<br>
etherlab-users mailing list<br>
<a href="mailto:etherlab-users@etherlab.org">etherlab-users@etherlab.org</a><br>
<a href="http://lists.etherlab.org/mailman/listinfo/etherlab-users" target="_blank">http://lists.etherlab.org/mailman/listinfo/etherlab-users</a><br>
<br></blockquote></div><br></div></div>