代码部分:
unsigned long temp;
unsigned char result[4];
temp = (unsigned long)(((result[0]<< 24) | (result[1] << 16) | (result[2] << 8) | (result[3] & 0xff)));
编译报错:
Description Resource Path Location Type
#64-D shift count is too large FDC.c /FDCceshi line 135 C/C++ Problem
|