mirror of
				https://github.com/marqs85/ossc
				synced 2025-11-04 09:56:01 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			110 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/******************************************************************************
 | 
						|
*                                                                             *
 | 
						|
* License Agreement                                                           *
 | 
						|
*                                                                             *
 | 
						|
* Copyright (c) 2008 Altera Corporation, San Jose, California, USA.           *
 | 
						|
* All rights reserved.                                                        *
 | 
						|
*                                                                             *
 | 
						|
* Permission is hereby granted, free of charge, to any person obtaining a     *
 | 
						|
* copy of this software and associated documentation files (the "Software"),  *
 | 
						|
* to deal in the Software without restriction, including without limitation   *
 | 
						|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,    *
 | 
						|
* and/or sell copies of the Software, and to permit persons to whom the       *
 | 
						|
* Software is furnished to do so, subject to the following conditions:        *
 | 
						|
*                                                                             *
 | 
						|
* The above copyright notice and this permission notice shall be included in  *
 | 
						|
* all copies or substantial portions of the Software.                         *
 | 
						|
*                                                                             *
 | 
						|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  *
 | 
						|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,    *
 | 
						|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
 | 
						|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      *
 | 
						|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING     *
 | 
						|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER         *
 | 
						|
* DEALINGS IN THE SOFTWARE.                                                   *
 | 
						|
*                                                                             *
 | 
						|
* This agreement shall be governed in all respects by the laws of the State   *
 | 
						|
* of California and by the laws of the United States of America.              *
 | 
						|
* Altera does not recommend, suggest or require that this reference design    *
 | 
						|
* file be used in conjunction or combination with any other product.          *
 | 
						|
******************************************************************************/
 | 
						|
 | 
						|
 | 
						|
/**********************************************************************
 | 
						|
 *
 | 
						|
 * Filename:    crc.h
 | 
						|
 * 
 | 
						|
 * Description: A header file describing the various CRC standards.
 | 
						|
 *
 | 
						|
 * Notes:       
 | 
						|
 *
 | 
						|
 * 
 | 
						|
 * Copyright (c) 2000 by Michael Barr.  This software is placed into
 | 
						|
 * the public domain and may be used for any purpose.  However, this
 | 
						|
 * notice must not be changed or removed and no warranty is either
 | 
						|
 * expressed or implied by its publication or distribution.
 | 
						|
 **********************************************************************/
 | 
						|
 | 
						|
#ifndef _crc_h
 | 
						|
#define _crc_h
 | 
						|
 | 
						|
 | 
						|
#define FALSE	0
 | 
						|
#define TRUE	!FALSE
 | 
						|
 | 
						|
/*
 | 
						|
 * Select the CRC standard from the list that follows.
 | 
						|
 */
 | 
						|
#define CRC32
 | 
						|
 | 
						|
 | 
						|
#if defined(CRC_CCITT)
 | 
						|
 | 
						|
typedef unsigned short  crc;
 | 
						|
 | 
						|
#define CRC_NAME			"CRC-CCITT"
 | 
						|
#define POLYNOMIAL			0x1021
 | 
						|
#define INITIAL_REMAINDER	0xFFFF
 | 
						|
#define FINAL_XOR_VALUE		0x0000
 | 
						|
#define REFLECT_DATA		FALSE
 | 
						|
#define REFLECT_REMAINDER	FALSE
 | 
						|
#define CHECK_VALUE			0x29B1
 | 
						|
 | 
						|
#elif defined(CRC16)
 | 
						|
 | 
						|
typedef unsigned short  crc;
 | 
						|
 | 
						|
#define CRC_NAME			"CRC-16"
 | 
						|
#define POLYNOMIAL			0x8005
 | 
						|
#define INITIAL_REMAINDER	0x0000
 | 
						|
#define FINAL_XOR_VALUE		0x0000
 | 
						|
#define REFLECT_DATA		TRUE
 | 
						|
#define REFLECT_REMAINDER	TRUE
 | 
						|
#define CHECK_VALUE			0xBB3D
 | 
						|
 | 
						|
#elif defined(CRC32)
 | 
						|
 | 
						|
typedef unsigned long  crc;
 | 
						|
 | 
						|
#define CRC_NAME			"CRC-32"
 | 
						|
#define POLYNOMIAL			0x04C11DB7
 | 
						|
#define INITIAL_REMAINDER	0xFFFFFFFF
 | 
						|
#define FINAL_XOR_VALUE		0xFFFFFFFF
 | 
						|
#define REFLECT_DATA		TRUE
 | 
						|
#define REFLECT_REMAINDER	TRUE
 | 
						|
#define CHECK_VALUE			0xCBF43926
 | 
						|
 | 
						|
#else
 | 
						|
 | 
						|
#error "One of CRC_CCITT, CRC16, or CRC32 must be #define'd."
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
 | 
						|
void  crcInit(void);
 | 
						|
crc   crcSlow(unsigned char const message[], int nBytes);
 | 
						|
crc   crcFast(unsigned char const message[], int nBytes);
 | 
						|
 | 
						|
 | 
						|
#endif /* _crc_h */
 |