please dont rip this site

PIC Microcontroller Bit Math Method


CRC

Here's a CRC-16 implementation from my web page (http://home.netcom.com/~fastfwd/answers.html#PIC00076):

This isn't the fastest possible implementation, but it should be quick enough for most purposes. It uses the standard X.25 (and XMODEM) polynomial: x^16+x^12+x^5+1.

    CRCHI   EQU     some register
    CRCLO   EQU     another register

            CLRF    CRCHI
            CLRF    CRCLO

            ;Append 16 "0" bits to your message here.

    LOOP:   ;If there are no more bits in your message, go to
            ;"DONE".  Otherwise, left-shift the next bit of your
            ;message into the carry here.

            RLF     CRCLO
            RLF     CRCHI

            SKPC                ;X^16
            GOTO    LOOP

            MOVLW   00010000B   ;X^12
            XORWF   CRCHI       ;

            MOVLW   00100001B   ;X^5 + 1
            XORWF   CRCLO       ;

            GOTO    LOOP

    DONE:   ;The CRC is in "CRCHI" and "CRCLO".



file: /techref/microchip/crc16-aw.htm, 1KB, , updated: 2000/12/8 11:13, local time: 2009/11/21 22:34,
TOP NEW HELP FIND: 
38.107.191.104:LOG IN
©2009 PLEASE DON'T RIP! DO: LINK / DIGG! / MAKE!

 ©2009 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it!
<A HREF="http://piclist.com/techref/microchip/crc16-aw.htm"> PIC Microcontroller Bit Math Method - CRC16</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

  Check out the Plantraco Desktop Rover. A 4 inch computer / remote controlled tele-presence laser-tag tank thing that is (almost) more fun than SEX!
 
miSim DE is an excellent, portable and powerful IDE for developing PIC applications.
The only consistant, simple to use yet powerful development environment. It simulates real-world devices via virtual component "plugins" (LED,LCD,key,motor,TV,etc) in real time, has a syntax highlighting editor, macro assembler and disassembler. Regular updates and third-party plugins keep this software ahead of any other PIC IDE.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .