File:  [ELWIX - Embedded LightWeight unIX -] / libaitcrc / example / test.c
Revision 1.1.1.1.2.1: download - view: text, annotated - select for diffs - revision graph
Wed Jan 20 00:12:25 2010 UTC (14 years, 6 months ago) by misho
Branches: crc1_1
Diff to: branchpoint 1.1.1.1: preferred, colored
new test

#include <stdio.h>
#include <sys/types.h>
#include <aitcrc.h>


int main()
{
	register int cx = 0;
	int opt;
	char buf[200];
       	u_char pd[7] = { 0xFF, 0x01, 0x00, 0x04, 0x3F, 0x00, 0x01 };
	u_char pp[8] = { 0xA0, 0x00, 0x00, 0x04, 0x20, 0x00, 0xAF, 0x01 };

	printf("reflect=%lu\n", crcReflect(3001123, 32));

	printf("pelco_d=0x%x pelco_p=0x%x\n", crcPelco('d', pd), crcPelco('p', pp));

	return 0;
}

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