- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一些 C++ 代码,我正在将其移植到 C。当我在 C 代码中计算 CRC 时,出于某种原因,它返回错误的 CRC 值,而 C++ 代码运行良好。我是 C++ 的新手。我需要一些帮助来理解我在返回错误 CRC 值的 C 代码中做错了什么。
我创建了两个单独的文件,一个用于 C,一个用于 C++,试图在两者中实现相同的结果。
/* C++ */
#include <iostream>
#include <fstream>
#include <vector>
using namespace std;
// Calculate crc32 checksum the way CC2538 and CC2650 does it.
int calcCrcLikeChip(const unsigned char *pData, unsigned long ulByteCount)
{
unsigned long d, ind;
unsigned long acc = 0xFFFFFFFF;
const unsigned long ulCrcRand32Lut[] =
{
0x00000000, 0x1DB71064, 0x3B6E20C8, 0x26D930AC,
0x76DC4190, 0x6B6B51F4, 0x4DB26158, 0x5005713C,
0xEDB88320, 0xF00F9344, 0xD6D6A3E8, 0xCB61B38C,
0x9B64C2B0, 0x86D3D2D4, 0xA00AE278, 0xBDBDF21C
};
while ( ulByteCount-- )
{
d = *pData++;
ind = (acc & 0x0F) ^ (d & 0x0F);
acc = (acc >> 4) ^ ulCrcRand32Lut[ind];
ind = (acc & 0x0F) ^ (d >> 4);
acc = (acc >> 4) ^ ulCrcRand32Lut[ind];
}
return (acc ^ 0xFFFFFFFF);
}
std::string fileName; // File name
int main ()
{
uint32_t byteCount = 0; // File size in bytes
static std::vector<char> pvWrite(1);// Vector to application firmware in.
static std::ifstream file; // File stream
uint32_t fileCrc;
fileName = "multi_role.bin";
file.open(fileName.c_str(), std::ios::binary);
if(file.is_open())
{
//
// Get file size:
//
file.seekg(0, std::ios::end);
byteCount = (uint32_t)file.tellg();
printf("%u\r\n", byteCount);
file.seekg(0, std::ios::beg);
//
// Read data
//
pvWrite.resize(byteCount);
file.read((char*) &pvWrite[0], byteCount);
}
else
{
cout << "Unable to open file " << fileName.c_str();
}
fileCrc = calcCrcLikeChip((unsigned char *)&pvWrite[0], byteCount);
printf("%u\r\n", fileCrc);
}
/* C */
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdio.h>
const char *filename = "multi_role.bin";
int calcCrcLikeChip(const unsigned char *pData, unsigned long ulByteCount)
{
unsigned long d, ind;
unsigned long acc = 0xFFFFFFFF;
const unsigned long ulCrcRand32Lut[] =
{
0x00000000, 0x1DB71064, 0x3B6E20C8, 0x26D930AC,
0x76DC4190, 0x6B6B51F4, 0x4DB26158, 0x5005713C,
0xEDB88320, 0xF00F9344, 0xD6D6A3E8, 0xCB61B38C,
0x9B64C2B0, 0x86D3D2D4, 0xA00AE278, 0xBDBDF21C
};
while (ulByteCount--)
{
d = *pData++;
ind = (acc & 0x0F) ^ (d & 0x0F);
acc = (acc >> 4) ^ ulCrcRand32Lut[ind];
ind = (acc & 0x0F) ^ (d >> 4);
acc = (acc >> 4) ^ ulCrcRand32Lut[ind];
}
return (acc ^ 0xFFFFFFFF);
}
/****************************************************************
* Function Name : openFile
* Description : Opens the file
* Returns : NULL on failure
* Params @file: Path to the file to be opened
****************************************************************/
FILE *openFile(const char *file)
{
FILE *fp = fopen(file, "rb");
return(fp);
}
/****************************************************************
* Function Name : getFileSize
* Description : Gets the size of the file to be read
* Returns : 0 on failure
* Params @fp: File descriptor
****************************************************************/
long int getFileSize(FILE *fp)
{
/* Go to end of file */
if(fseek(fp, 0L, SEEK_END))
return (0);
/* Get the size */
long int sz = ftell(fp);
/* Put the curser back to 0 */
if(fseek(fp,0L,SEEK_SET))
return (0);
return sz;
}
int main()
{
static FILE *fPtr = NULL;
unsigned char *memPtr = NULL; /* Ptr to hold read data */
unsigned long fileCrc;
long fileSz = 0;
fPtr = openFile(filename);
fileSz = getFileSize(fPtr);
printf("%lu\n", fileSz);
memPtr = (unsigned char*)calloc(fileSz, sizeof(unsigned char));
fread((char*)memPtr,1 , fileSz, fPtr);
fileCrc = calcCrcLikeChip((const unsigned char*)memPtr, fileSz);
printf("fileCrc: %lu\n", fileCrc);
}
CRC 的预期结果 = 2637331102(适用于 C++)C中的错误结果=18446744072051915422
最佳答案
这几乎肯定是 32 位与 64 位编译器的问题。或者至少 sizeof(long)
两种编译器模式之间似乎有所不同。
证明:
C++: 2637331102 == 9D327A9E
C : 18446744072051915422 == FFFFFFFF 9D327A9E
请注意,“C”结果的后半部分确实与 C++ 结果匹配。只是“C”结果是一个 64 位数字。据推测,9D327A9E 已从 32 位值符号扩展为 64 位有符号值。
将两个实现中的所有这些声明显式更改为 32 位:
来自这里:
unsigned long d, ind;
unsigned long acc = 0xFFFFFFFF;
const unsigned long ulCrcRand32Lut[] =
对此:
uint32_t d, ind;
uint32_t acc = 0xFFFFFFFF;
const uint32_t ulCrcRand32Lut[] =
您可以 #include <stdint.h>
得到uint32_t
类型。
按照下面评论中的建议,将函数的返回类型更改为 uint32_t
以及。更好:
uint32_t calcCrcLikeChip(const unsigned char *pData, unsigned long ulByteCount)
{
uint32_t d, ind;
uint32_t acc = 0xFFFFFFFF;
const uint32_t ulCrcRand32Lut[] =
{
0x00000000, 0x1DB71064, 0x3B6E20C8, 0x26D930AC,
0x76DC4190, 0x6B6B51F4, 0x4DB26158, 0x5005713C,
0xEDB88320, 0xF00F9344, 0xD6D6A3E8, 0xCB61B38C,
0x9B64C2B0, 0x86D3D2D4, 0xA00AE278, 0xBDBDF21C
};
while ( ulByteCount > 0 )
{
ulByteCount--;
d = *pData++;
ind = (acc & 0x0F) ^ (d & 0x0F);
acc = (acc >> 4) ^ ulCrcRand32Lut[ind];
ind = (acc & 0x0F) ^ (d >> 4);
acc = (acc >> 4) ^ ulCrcRand32Lut[ind];
}
return (acc ^ 0xFFFFFFFF);
}
关于c++ - 为什么 CRC 和 C++ 代码版本的 CRC 计算不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56879642/
无法使用 Hive 版本 1.1.0 HBase 版本 0.94.8 和 hadoop 版本 2.7.0 从 hive 创建 Hbase 表 hive (default)> CREATE TABLE
我试图为 electron app 创建可执行文件但面临这个问题 Unable to determine Electron version. Please specify an Electron ve
我正在尝试让自适应阈值在 python 绑定(bind)到 opencv 中工作(swig 一个 - 无法让 opencv 2.0 工作,因为我正在使用 beagleboard 因为交叉编译还没有工作
我一直在 linux 机器上使用 JMeter,在命令行下使用了一段时间。工作正常。 今天,我在 Windows 机器(新客户端等)上尝试了它,它确实可以工作,但在控制台窗口中输出有很大不同。 Lin
在我的编码环境中,我通常使用最新版本的 Java 和 Eclipse。当我编写源代码时,我不会注意我使用的 API 方法或类是否向后兼容旧版本的 Java 或 Eclipse。在 javadoc 中存
问题是关于版本的特定组合,但更普遍。 我刚刚从 Kubuntu 12.04 升级到 14.04。现在,当我想编译 CUDA 代码(使用 CUDA 6.5)时,我得到: #error -- unsupp
我目前正在对我的一些应用程序进行沙箱处理,看来我必须删除一些功能才能满足 Mac App Store 沙箱(和其他)规则。 显然用户不会因为失去功能而感到高兴,我担心他们不会指责苹果制定了愚蠢的规则,
我用 flash 和 js 版本创建了一个动画横幅。 是否可以检测低于版本 9 的 ie 版本,然后提供 Flash 横幅,否则提供 js 横幅。 最佳答案 您可以使用条件注释来检测 IE 版本
我有一个处理不同位置的数据库的应用程序,我想检查这些数据库是否使用 Firebird 2.5 或更高版本打开。我们最近从 Firebird 2.0 迁移到了 2.5,我们有很多数据库可以响应 sele
我正在开发一个应用程序,我使用托管在我的服务器上的 Java 和 Jersey 构建了后端部分。我在服务器上使用 Tomcat7 来调用 Web 服务。 我以前有一台安装了 Ubuntu 的计算机,我
我可以使用 GetVersionEx() 函数来获取 Windows 版本,但是这个函数将返回一个数字而不是一个字符串。但是没有问题,因为我可以将数字转换为字符串,例如: if (osvi.dwMaj
我已经在我的系统中安装了 Anaconda 2 & 3。 Anaconda 2 包含 python 2.7 & Anaconda 3 包含 python 3.6。 我需要使用命令提示符运行我的 pyt
我正在尝试构建一个 Android 项目,但发生了以下错误 Error:(10, 1) A problem occurred evaluating project ':app'. > Failed t
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 4 年前。 Improve this qu
在降级我的 GCC 之前,我想知道是否有办法确定我的机器中的哪些程序/框架或依赖项会中断,以及是否有更好的方法来执行 openpose 安装? (例如,在 CMake 中更改某些内容) 有没有办法在不
我已经在终端的代码sudo apt-get install Shadowsocks-qt5中安装了Shadowsocks-Qt5,然后我可以通过搜索找到启动图标,但是它当我点击图标时打不开。然后我尝试
在网络上找到的文档说,MLLP V2(第 2 版)是用于传输 HL7 版本 3 内容的所有消息传输协议(protocol)的要求。似乎 MLLP 第 2 版主要用于 HL7 第 3 版。 我们可以/应
我正在使用带有 selinium webdriver 的 Protractor 。我的chromeDriver版本是78.0.1,chrome版本是78.0.3904.97。两个版本都匹配,应该不会有
我正在按照教程设置 mysql 数据库并做一些事情。我无法找到数据库资源管理器。我读了很多,但在 Window->show View-> Dataxxx 或右侧上部选项卡中无法正常工作。 最佳答案 从
我已经在 KDE 桌面上安装了 Anaconda 2.0.1。当我运行 python 并看到所有已安装的模块时,我收到此消息“无法将不兼容的 Qt 库(版本 0x40801)与该库(版本 0x4080
我是一名优秀的程序员,十分优秀!