These are the examples provided for [[/users/frank26080115/libraries/LPC1700CMSIS_Lib/]] Note, the entire "program" is not compilable!

EMAC/EmacRaw/crc32.h

Committer:
frank26080115
Date:
2011-03-20
Revision:
0:bf7b9fba3924

File content as of revision 0:bf7b9fba3924:

/*****************************************************************************
 *   crc32.h:  Ethernet CRC module file for NXP LPC230x Family Microprocessors
 *
 *   Copyright(C) 2006, NXP Semiconductor
 *   All rights reserved.
 *
 *   History
 *   2006.09.01  ver 1.00    Prelimnary version, first Release
 *
******************************************************************************/
#ifndef __CRC32_H
#define __CRC32_H

#include "lpc_types.h"

void   crc32_init(uint32_t *pCRC);
void   crc32_add(uint32_t *pCRC, uint8_t val8);
void   crc32_end(uint32_t *pCRC);
uint32_t  crc32_bfr(void *pBfr, uint32_t size);
uint32_t do_crc_behav( long long Addr );

#endif

/*-----------------------------------------------------------*/