代码搜索:crc_ccitt
找到约 43 项符合「crc_ccitt」的源代码
代码结果 43
www.eeworm.com/read/483604/6599467
txt listing1.txt
/* Boot Loader.c */
unsigned short CalculateCCITT(unsigned short CurrentCRC, unsigned char NextByte);
#define FLASH 0
#define SRAM 1
sbit TalkTo = P1^5;
void main(void)
{
unsigned ch
www.eeworm.com/read/483609/6599691
txt prog.txt
/* Boot Loader.c */
unsigned short CalculateCCITT(unsigned short CurrentCRC, unsigned char NextByte);
#define FLASH 0
#define SRAM 1
sbit TalkTo = P1^5;
void main(void)
{
unsigned ch
www.eeworm.com/read/483604/6599465
txt listing4.txt
/* Boot Loader.c */
#include
#include "iboot.h"
unsigned short CalculateCCITT(unsigned short CurrentCRC, unsigned char NextByte);
void RestorePowerOnDefaults(void);
#define FLASH 0
www.eeworm.com/read/483609/6599693
txt prog4.txt
/* Boot Loader.c */
#include
#include "iboot.h"
unsigned short CalculateCCITT(unsigned short CurrentCRC, unsigned char NextByte);
void RestorePowerOnDefaults(void);
#define FLASH 0
www.eeworm.com/read/481542/6642979
c crc-ccitt.c
/*
* linux/lib/crc-ccitt.c
*
* This source code is licensed under the GNU General Public License,
* Version 2. See the file COPYING for more details.
*/
#include
#include
www.eeworm.com/read/439998/7696101
ls1 crc-ccitt.ls1
A51 MACRO ASSEMBLER CRC_CCITT 03/06/2007 22:39:45 PAGE 1
MACRO ASSEMBLER A51 V7.10
OBJECT MODULE PLACED IN .\DeBug\CRC-CCITT.OBJ
www.eeworm.com/read/434115/7888018
ls1 crc-ccitt.ls1
A51 MACRO ASSEMBLER CRC_CCITT 03/06/2007 22:39:45 PAGE 1
MACRO ASSEMBLER A51 V7.10
OBJECT MODULE PLACED IN .\DeBug\CRC-CCITT.OBJ
www.eeworm.com/read/324404/13264371
m crc_16.m
function CRC_CCITT = CRC_16(input)
CRC_CCITT = ones(1, 16);
for i = 1:length(input)
a = xor(CRC_CCITT(1), input(i));
%temp = CRC_CCITT;
CRC_CCITT(1:3) = CRC_CCITT(2:4);
CRC_C
www.eeworm.com/read/105455/15666518
c tst_crc.c
#include
#include
#include
#include "lib_crc.h"
/*******************************************************************\
*
www.eeworm.com/read/324404/13264308
m rsc_test.m
g = [ 1 1 1; 1 0 1 ];
x1 = round(rand(1, 112)); % info. bits 信息比特
CRC_CCITT = CRC_16(x1);
x =[x1,CRC_CCITT] %加上CRC 比特信息
input = x;
output1 = r