/***************************************************************************** * 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 #include #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 ******************************************************************************/