
CRC-16 procedure or xop?

cheney
I am writing a procedure to communicate with an Eurotherm temperature controller (3204), via RS232 using VDT2.xop. The controller uses the MODBUS-RTU protocol. Under this protocol, each frame of command requires a 16 bit CRC (cyclic redundancy code) check for error detection. There is a in-built function in Igor, WaveCRC (or StrCRC), that can generate a 32 bit CRC code instead of 16 bit.
It seems not possible to implement the CRC algorithm in Igor programming. Has anyone created an XOP for getting CRC-16 codes? Aslo, I guess someone has already realized MODBUS-RTU communication with Igor. It would be much appreciated if some example codes can be shared.
Cheers, Cheney
I very much doubt that. Igor's programming capabilities are quite broad. The bit manipulation capabilities can be somewhat cumbersome, but they exist. As a starting point, at least, check out the Wikipedia article: http://en.wikipedia.org/wiki/Cyclic_redundancy_check
The polynomial is given for "CRC-16-IBM x^16 + x^15 + x^2 + 1 (Bisync, Modbus, USB, ANSI X3.28, many others; also known as CRC-16 and CRC-16-ANSI)". Along with the prescription in the article for calculating a CRC, and a lot of work, I think it ought to be possible to code an Igor CRC-16 function.
February 25, 2012 at 06:24 am - Permalink
http://code.google.com/p/libext2fs-wii/source/browse/trunk/source/crc16…
The polynomial used appears to be the one you want for the MODBUS protocol. The choice you have is to convert this to an XOP, or translate the C code into Igor. A handy hex-to-dec conversion you can use in Igor is
sscanf HexString,"%i", DecVariable
, where DecVariable becomes the converted numeric value of the hexadecimal string (starting with prefix 0x).February 25, 2012 at 11:29 am - Permalink
edit2: now correct (forgot that ^ is bitwiseXOR in C), but it's not the modbus one.
February 26, 2012 at 12:46 am - Permalink
February 26, 2012 at 01:33 am - Permalink
Actually I also searched similar topics in Igor Mailing List. From there I have found similar prodecures written by Tony Withers (http://talc.geo.umn.edu/people/researchers/withe012/software.htm). His prodecure includes a delicate function for CRC16, as attached below. I was not sure how to do bitwise operation on a wave.
February 26, 2012 at 03:24 am - Permalink