File:  [ELWIX - Embedded LightWeight unIX -] / libaitcrc / example / test.c
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Wed Aug 29 09:00:44 2012 UTC (11 years, 9 months ago) by misho
Branches: MAIN
CVS tags: crc2_4, HEAD, CRC2_3
version 3.2

    1: #include <stdio.h>
    2: #include <sys/types.h>
    3: #include <aitcrc.h>
    4: 
    5: 
    6: int main()
    7: {
    8:        	u_char pd[7] = { 0xFF, 0x01, 0x00, 0x04, 0x3F, 0x00, 0x01 };
    9: 	u_char pp[8] = { 0xA0, 0x00, 0x00, 0x04, 0x20, 0x00, 0xAF, 0x01 };
   10: 
   11: 	printf("reflect=%u\n", crcReflect(3001123, 32));
   12: 
   13: 	printf("pelco_d=0x%x pelco_p=0x%x\n", crcPelco('d', pd), crcPelco('p', pp));
   14: 
   15: 	return 0;
   16: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>