You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
910 B

/*****************************************************************************
* uart.h: Header file for NXP LPC17xx Family Microprocessors
*
* Copyright (c) 2023 CCSENS
* All rights reserved.
*
* History
* 2009.05.27 ver 1.00 Prelimnary version, first Release
*
******************************************************************************/
#ifndef _C_CRC_H_
#define _C_CRC_H_
#include <stdarg.h>
#include <stdlib.h>
#include "c_type51.h"
extern void crc16(unsigned char *CRC,void *dat,unsigned int len) /*reentrant*/;
//extern void crc16_irq(unsigned char *CRC,void *dat,unsigned int len);
void crc16qq(unsigned char *CRC,void *dat,unsigned int len);
#endif /* end _C_CRC_H_ */
/*****************************************************************************
** End Of File
******************************************************************************/