mirror of
https://github.com/whik/crc-lib-c.git
synced 2024-02-10 11:45:35 +08:00
create respository
This commit is contained in:
parent
a80ef93778
commit
bed4afb01e
BIN
bin/Debug/project.exe
Normal file
BIN
bin/Debug/project.exe
Normal file
Binary file not shown.
570
crcLib.c
Normal file
570
crcLib.c
Normal file
@ -0,0 +1,570 @@
|
||||
#include "crcLib.h"
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-4/ITU x4+x+1
|
||||
* Poly: 0x03
|
||||
* Init: 0x00
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0x00
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint8_t crc4_itu(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0x0C;// 0x0C = (reverse 0x03)>>(8-4)
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-5/EPC x5+x3+1
|
||||
* Poly: 0x09
|
||||
* Init: 0x09
|
||||
* Refin: False
|
||||
* Refout: False
|
||||
* Xorout: 0x00
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint8_t crc5_epc(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t crc = 0x48; // Initial value: 0x48 = 0x09<<(8-5)
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for ( i = 0; i < 8; i++ )
|
||||
{
|
||||
if ( crc & 0x80 )
|
||||
crc = (crc << 1) ^ 0x48; // 0x48 = 0x09<<(8-5)
|
||||
else
|
||||
crc <<= 1;
|
||||
}
|
||||
}
|
||||
return crc >> 3;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-5/ITU x5+x4+x2+1
|
||||
* Poly: 0x15
|
||||
* Init: 0x00
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0x00
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint8_t crc5_itu(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0x15;// 0x15 = (reverse 0x15)>>(8-5)
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-5/USB x5+x2+1
|
||||
* Poly: 0x05
|
||||
* Init: 0x1F
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0x1F
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint8_t crc5_usb(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t crc = 0x1F; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0x14;// 0x14 = (reverse 0x05)>>(8-5)
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return crc ^ 0x1F;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-6/ITU x6+x+1
|
||||
* Poly: 0x03
|
||||
* Init: 0x00
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0x00
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint8_t crc6_itu(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0x30;// 0x30 = (reverse 0x03)>>(8-6)
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-7/MMC x7+x3+1
|
||||
* Poly: 0x09
|
||||
* Init: 0x00
|
||||
* Refin: False
|
||||
* Refout: False
|
||||
* Xorout: 0x00
|
||||
* Use: MultiMediaCard,SD,ect.
|
||||
*****************************************************************************/
|
||||
uint8_t crc7_mmc(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for ( i = 0; i < 8; i++ )
|
||||
{
|
||||
if ( crc & 0x80 )
|
||||
crc = (crc << 1) ^ 0x12; // 0x12 = 0x09<<(8-7)
|
||||
else
|
||||
crc <<= 1;
|
||||
}
|
||||
}
|
||||
return crc >> 1;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-8 x8+x2+x+1
|
||||
* Poly: 0x07
|
||||
* Init: 0x00
|
||||
* Refin: False
|
||||
* Refout: False
|
||||
* Xorout: 0x00
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint8_t crc8(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for ( i = 0; i < 8; i++ )
|
||||
{
|
||||
if ( crc & 0x80 )
|
||||
crc = (crc << 1) ^ 0x07;
|
||||
else
|
||||
crc <<= 1;
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-8/ITU x8+x2+x+1
|
||||
* Poly: 0x07
|
||||
* Init: 0x00
|
||||
* Refin: False
|
||||
* Refout: False
|
||||
* Xorout: 0x55
|
||||
* Alias: CRC-8/ATM
|
||||
*****************************************************************************/
|
||||
uint8_t crc8_itu(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for ( i = 0; i < 8; i++ )
|
||||
{
|
||||
if ( crc & 0x80 )
|
||||
crc = (crc << 1) ^ 0x07;
|
||||
else
|
||||
crc <<= 1;
|
||||
}
|
||||
}
|
||||
return crc ^ 0x55;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-8/ROHC x8+x2+x+1
|
||||
* Poly: 0x07
|
||||
* Init: 0xFF
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0x00
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint8_t crc8_rohc(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t crc = 0xFF; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0xE0; // 0xE0 = reverse 0x07
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-8/MAXIM x8+x5+x4+1
|
||||
* Poly: 0x31
|
||||
* Init: 0x00
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0x00
|
||||
* Alias: DOW-CRC,CRC-8/IBUTTON
|
||||
* Use: Maxim(Dallas)'s some devices,e.g. DS18B20
|
||||
*****************************************************************************/
|
||||
uint8_t crc8_maxim(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; i++)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0x8C; // 0x8C = reverse 0x31
|
||||
else
|
||||
crc >>= 1;
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-16/IBM x16+x15+x2+1
|
||||
* Poly: 0x8005
|
||||
* Init: 0x0000
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0x0000
|
||||
* Alias: CRC-16,CRC-16/ARC,CRC-16/LHA
|
||||
*****************************************************************************/
|
||||
uint16_t crc16_ibm(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0xA001; // 0xA001 = reverse 0x8005
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-16/MAXIM x16+x15+x2+1
|
||||
* Poly: 0x8005
|
||||
* Init: 0x0000
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0xFFFF
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint16_t crc16_maxim(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0xA001; // 0xA001 = reverse 0x8005
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return ~crc; // crc^0xffff
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-16/USB x16+x15+x2+1
|
||||
* Poly: 0x8005
|
||||
* Init: 0xFFFF
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0xFFFF
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint16_t crc16_usb(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t crc = 0xffff; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0xA001; // 0xA001 = reverse 0x8005
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return ~crc; // crc^0xffff
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-16/MODBUS x16+x15+x2+1
|
||||
* Poly: 0x8005
|
||||
* Init: 0xFFFF
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0x0000
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint16_t crc16_modbus(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t crc = 0xffff; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0xA001; // 0xA001 = reverse 0x8005
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-16/CCITT x16+x12+x5+1
|
||||
* Poly: 0x1021
|
||||
* Init: 0x0000
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0x0000
|
||||
* Alias: CRC-CCITT,CRC-16/CCITT-TRUE,CRC-16/KERMIT
|
||||
*****************************************************************************/
|
||||
uint16_t crc16_ccitt(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0x8408; // 0x8408 = reverse 0x1021
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-16/CCITT-FALSE x16+x12+x5+1
|
||||
* Poly: 0x1021
|
||||
* Init: 0xFFFF
|
||||
* Refin: False
|
||||
* Refout: False
|
||||
* Xorout: 0x0000
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint16_t crc16_ccitt_false(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t crc = 0xffff; //Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= (uint16_t)(*data++) << 8; // crc ^= (uint6_t)(*data)<<8; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if ( crc & 0x8000 )
|
||||
crc = (crc << 1) ^ 0x1021;
|
||||
else
|
||||
crc <<= 1;
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-16/X25 x16+x12+x5+1
|
||||
* Poly: 0x1021
|
||||
* Init: 0xFFFF
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0XFFFF
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint16_t crc16_x25(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t crc = 0xffff; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0x8408; // 0x8408 = reverse 0x1021
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return ~crc; // crc^Xorout
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-16/XMODEM x16+x12+x5+1
|
||||
* Poly: 0x1021
|
||||
* Init: 0x0000
|
||||
* Refin: False
|
||||
* Refout: False
|
||||
* Xorout: 0x0000
|
||||
* Alias: CRC-16/ZMODEM,CRC-16/ACORN
|
||||
*****************************************************************************/
|
||||
uint16_t crc16_xmodem(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= (uint16_t)(*data++) << 8; // crc ^= (uint16_t)(*data)<<8; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if ( crc & 0x8000 )
|
||||
crc = (crc << 1) ^ 0x1021;
|
||||
else
|
||||
crc <<= 1;
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-16/DNP x16+x13+x12+x11+x10+x8+x6+x5+x2+1
|
||||
* Poly: 0x3D65
|
||||
* Init: 0x0000
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0xFFFF
|
||||
* Use: M-Bus,ect.
|
||||
*****************************************************************************/
|
||||
uint16_t crc16_dnp(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t crc = 0; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0xA6BC; // 0xA6BC = reverse 0x3D65
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return ~crc; // crc^Xorout
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-32 x32+x26+x23+x22+x16+x12+x11+x10+x8+x7+x5+x4+x2+x+1
|
||||
* Poly: 0x4C11DB7
|
||||
* Init: 0xFFFFFFF
|
||||
* Refin: True
|
||||
* Refout: True
|
||||
* Xorout: 0xFFFFFFF
|
||||
* Alias: CRC_32/ADCCP
|
||||
* Use: WinRAR,ect.
|
||||
*****************************************************************************/
|
||||
uint32_t crc32(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint32_t crc = 0xffffffff; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= *data++; // crc ^= *data; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if (crc & 1)
|
||||
crc = (crc >> 1) ^ 0xEDB88320;// 0xEDB88320= reverse 0x04C11DB7
|
||||
else
|
||||
crc = (crc >> 1);
|
||||
}
|
||||
}
|
||||
return ~crc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Name: CRC-32/MPEG-2 x32+x26+x23+x22+x16+x12+x11+x10+x8+x7+x5+x4+x2+x+1
|
||||
* Poly: 0x4C11DB7
|
||||
* Init: 0xFFFFFFF
|
||||
* Refin: False
|
||||
* Refout: False
|
||||
* Xorout: 0x0000000
|
||||
* Note:
|
||||
*****************************************************************************/
|
||||
uint32_t crc32_mpeg_2(uint8_t *data, uint16_t length)
|
||||
{
|
||||
uint8_t i;
|
||||
uint32_t crc = 0xffffffff; // Initial value
|
||||
while(length--)
|
||||
{
|
||||
crc ^= (uint32_t)(*data++) << 24;// crc ^=(uint32_t)(*data)<<24; data++;
|
||||
for (i = 0; i < 8; ++i)
|
||||
{
|
||||
if ( crc & 0x80000000 )
|
||||
crc = (crc << 1) ^ 0x04C11DB7;
|
||||
else
|
||||
crc <<= 1;
|
||||
}
|
||||
}
|
||||
return crc;
|
||||
}
|
29
crcLib.h
Normal file
29
crcLib.h
Normal file
@ -0,0 +1,29 @@
|
||||
#ifndef __CRCLIB_H__
|
||||
#define __CRCLIB_H__
|
||||
|
||||
#include "stdint.h"
|
||||
|
||||
uint8_t crc4_itu(uint8_t *data, uint16_t length);
|
||||
uint8_t crc5_epc(uint8_t *data, uint16_t length);
|
||||
uint8_t crc5_itu(uint8_t *data, uint16_t length);
|
||||
uint8_t crc5_usb(uint8_t *data, uint16_t length);
|
||||
uint8_t crc6_itu(uint8_t *data, uint16_t length);
|
||||
uint8_t crc7_mmc(uint8_t *data, uint16_t length);
|
||||
uint8_t crc8(uint8_t *data, uint16_t length);
|
||||
uint8_t crc8_itu(uint8_t *data, uint16_t length);
|
||||
uint8_t crc8_rohc(uint8_t *data, uint16_t length);
|
||||
uint8_t crc8_maxim(uint8_t *data, uint16_t length);//DS18B20
|
||||
uint16_t crc16_ibm(uint8_t *data, uint16_t length);
|
||||
uint16_t crc16_maxim(uint8_t *data, uint16_t length);
|
||||
uint16_t crc16_usb(uint8_t *data, uint16_t length);
|
||||
uint16_t crc16_modbus(uint8_t *data, uint16_t length);
|
||||
uint16_t crc16_ccitt(uint8_t *data, uint16_t length);
|
||||
uint16_t crc16_ccitt_false(uint8_t *data, uint16_t length);
|
||||
uint16_t crc16_x25(uint8_t *data, uint16_t length);
|
||||
uint16_t crc16_xmodem(uint8_t *data, uint16_t length);
|
||||
uint16_t crc16_dnp(uint8_t *data, uint16_t length);
|
||||
uint32_t crc32(uint8_t *data, uint16_t length);
|
||||
uint32_t crc32_mpeg_2(uint8_t *data, uint16_t length);
|
||||
|
||||
|
||||
#endif // __CRCLIB_H__
|
15
main.c
Normal file
15
main.c
Normal file
@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include "crcLib.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
uint8_t data;
|
||||
uint8_t crc;
|
||||
|
||||
data = 0x34;
|
||||
crc = crc8_maxim(&data, 1);
|
||||
|
||||
printf("data:%02x, crc:%02x\n", data, crc);
|
||||
return 0;
|
||||
}
|
BIN
obj/Debug/crcLib.o
Normal file
BIN
obj/Debug/crcLib.o
Normal file
Binary file not shown.
BIN
obj/Debug/main.o
Normal file
BIN
obj/Debug/main.o
Normal file
Binary file not shown.
16
project.bmarks
Normal file
16
project.bmarks
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<BrowseTracker_layout_file>
|
||||
<ActiveTarget name="Debug" />
|
||||
<File name="crcLib.h" open="1" top="0" tabpos="3">
|
||||
<Cursor position="1189" topLine="9" />
|
||||
<BrowseMarks positions="" />
|
||||
</File>
|
||||
<File name="crcLib.c" open="1" top="0" tabpos="2">
|
||||
<Cursor position="376" topLine="9" />
|
||||
<BrowseMarks positions="" />
|
||||
</File>
|
||||
<File name="main.c" open="1" top="1" tabpos="1">
|
||||
<Cursor position="54" topLine="0" />
|
||||
<BrowseMarks positions="" />
|
||||
</File>
|
||||
</BrowseTracker_layout_file>
|
45
project.cbp
Normal file
45
project.cbp
Normal file
@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<CodeBlocks_project_file>
|
||||
<FileVersion major="1" minor="6" />
|
||||
<Project>
|
||||
<Option title="project" />
|
||||
<Option pch_mode="2" />
|
||||
<Option compiler="gcc" />
|
||||
<Build>
|
||||
<Target title="Debug">
|
||||
<Option output="bin/Debug/project" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj/Debug/" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-g" />
|
||||
</Compiler>
|
||||
</Target>
|
||||
<Target title="Release">
|
||||
<Option output="bin/Release/project" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj/Release/" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-O2" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add option="-s" />
|
||||
</Linker>
|
||||
</Target>
|
||||
</Build>
|
||||
<Compiler>
|
||||
<Add option="-Wall" />
|
||||
</Compiler>
|
||||
<Unit filename="crcLib.c">
|
||||
<Option compilerVar="CC" />
|
||||
</Unit>
|
||||
<Unit filename="crcLib.h" />
|
||||
<Unit filename="main.c">
|
||||
<Option compilerVar="CC" />
|
||||
</Unit>
|
||||
<Extensions>
|
||||
<lib_finder disable_auto="1" />
|
||||
</Extensions>
|
||||
</Project>
|
||||
</CodeBlocks_project_file>
|
12
project.depend
Normal file
12
project.depend
Normal file
@ -0,0 +1,12 @@
|
||||
# depslib dependency file v1.0
|
||||
1600584609 source:d:\myfile\crc-lib-c\crclib.c
|
||||
"crcLib.h"
|
||||
|
||||
1600596279 d:\myfile\crc-lib-c\crclib.h
|
||||
"stdint.h"
|
||||
|
||||
1600596694 source:d:\myfile\crc-lib-c\main.c
|
||||
<stdio.h>
|
||||
<stdlib.h>
|
||||
"crcLib.h"
|
||||
|
20
project.layout
Normal file
20
project.layout
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<CodeBlocks_layout_file>
|
||||
<FileVersion major="1" minor="0" />
|
||||
<ActiveTarget name="Debug" />
|
||||
<File name="crcLib.h" open="1" top="0" tabpos="3" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
|
||||
<Cursor>
|
||||
<Cursor1 position="1189" topLine="9" />
|
||||
</Cursor>
|
||||
</File>
|
||||
<File name="crcLib.c" open="1" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
|
||||
<Cursor>
|
||||
<Cursor1 position="376" topLine="9" />
|
||||
</Cursor>
|
||||
</File>
|
||||
<File name="main.c" open="1" top="1" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
|
||||
<Cursor>
|
||||
<Cursor1 position="54" topLine="0" />
|
||||
</Cursor>
|
||||
</File>
|
||||
</CodeBlocks_layout_file>
|
Loading…
x
Reference in New Issue
Block a user