1 Attachment(s)
Re: Need to convert C to PBP
Dohh... Here is the attachment.
Re: Need to convert C to PBP
hi timmers, you example is for calculate cyclic redundancy check (CRC16). look here two example one using Vb6 the another one with PBP. i use both
http://www.picbasic.co.uk/forum/showthread.php?t=16735
here explain how to that:
http://en.wikipedia.org/wiki/Computation_of_CRC
Re: Need to convert C to PBP
I am still struggling to learn C myself so what I say here MAY BE TOTALLY INCORRECT.
const u16 crc_16_table[0x100]
const u16 = dataType , crc_16_table = varName, [0x100] = startMemLocation, & this can be put into program memory with PROGMEM command at least in arduino.
HTH