09.09.2014 Views

Download PDF - MachMotion.com

Download PDF - MachMotion.com

Download PDF - MachMotion.com

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

CRC Generation Function<br />

unsigned short CRC16(puchMsg, usDataLen)<br />

unsigned char *puchMsg ;<br />

unsigned short usDataLen ;<br />

{<br />

unsigned char uchCRCHi = 0xFF ;<br />

unsigned char uchCRCLo = 0xFF ;<br />

unsigned uIndex ;<br />

/* message to calculate CRC upon*/<br />

/* quantity of bytes in message*/<br />

/* high byte of CRC initialized*/<br />

/* low byte of CRC initialized*/<br />

/* will index into CRC lookup table*/<br />

while (usDataLen--)<br />

{<br />

uIndex = uchCRCHi ^ *puchMsgg++ ;<br />

uchCRCHi = uchCRCLo ^ auchCRCHi[uIndex} ;<br />

uchCRCLo = auchCRCLo[uIndex] ;<br />

}<br />

return (uchCRCHi

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!