男人扒开女人腿做爽爽视频-日本一道人妻无码一区在线-天天爽夜夜爽夜夜爽-免费无码又爽又刺激毛片-久久国产乱子伦精品免费台湾

RFID超高頻讀寫器CRC16計算方法(.NET、C語言、Java語言、python版本)

2022-03-09 15:00:36 lhqcool 9053

一體機讀寫器/分體式讀寫器AT指令CRC校驗方法,暫時只有C#版本,C語言版本,Java語言版本、python版本

適用型號:

LT-DS302 DS312 DS309 DS310,LT-DS814 DS818 DS8112 DS8116,LT-DS509 DS512,LT-DS322

C#版本CRC:

  public class CRC

    {

        private static int POLYNOMIAL = 0x8408;

        private static int PRESET_VALUE = 0xFFFF;


        public static int crc16(string hex)

        {

            byte[] data = HexStringToByteArray(hex);

            int current_crc_value = PRESET_VALUE;

            for (int i = 0; i < data.Length; i++)

            {

                current_crc_value ^= data[i] & 0xFF;

                for (int j = 0; j < 8; j++)

                {

                    if ((current_crc_value & 1) != 0)

                    {

                        current_crc_value = (current_crc_value >> 1) ^ POLYNOMIAL;

                    }

                    else

                    {

                        current_crc_value = current_crc_value >> 1;

                    }

                }

            }

            return current_crc_value;

        }

        //16進制數組字符串轉換         

        private static byte[] HexStringToByteArray(string s)

        {

            s = s.Replace(" ", "");

            byte[] buffer = new byte[s.Length / 2];

            for (int i = 0; i < s.Length; i += 2)

                buffer[i / 2] = (byte)Convert.ToByte(s.Substring(i, 2), 16);

            return buffer;

        }

    }


(詢查模式應答格式)調用示例:

string input = "1500010301010C300833B2DDD90140000000002A80BE"//讀寫器AT指令返回值,也可用于指令發送校驗CRC

int bytes = CRC.crc16(input);

// bytes=0;bytes等于0表示通過,其他值不通過!

(詢查模式應答格式)拆分示例:

Len:15

Adr:00

reComd:01

Status:03

ant:01

Num:01

EPC/TID長度:0C

EPC號或TID數據:300833B2DDD9014000000000

RSSI值:2A

CRC-LSB:80

CRC-MSB:BE



實時模式輸入格式也相似,Statuss是0xee 就是實時模式回傳的數據。




C語言版本CRC:

CRC16的C語言算法:

#include #include #include #include #define PRESET_VALUE 0xFFFF

#define POLYNOMIAL  0x8408


typedef  unsigned char byte;


typedef union name{

    int len;

    unsigned char ucx;

} name;



unsigned int uiCrc16Cal(unsigned char const* pucY, unsigned char ucX)

{

    unsigned char ucI, ucJ;

    unsigned short int  uiCrcValue = PRESET_VALUE;

    for (ucI = 0; ucI < ucX; ucI++)

    {

        uiCrcValue = uiCrcValue ^ *(pucY + ucI);

        for (ucJ = 0; ucJ < 8; ucJ++)

        {

            if (uiCrcValue & 0x0001)

            {

                uiCrcValue = (uiCrcValue >> 1) ^ POLYNOMIAL;

            }

            else

            {

                uiCrcValue = (uiCrcValue >> 1);

            }

        }

    }

    return uiCrcValue;

}


void hexToBytes(const std::string& hex, byte* bytes){

    int bytelen = hex.length()/2;

    std::string strByte;

    unsigned int n;

    for(int i = 0; i < bytelen; i++){

        strByte = hex.substr(i*2, 2);

        sscanf(strByte.c_str(), "%x", &n);

        bytes[i]=n;

    }

}



int main()

{

    std::string hex="1500010101010ce28011700000020cc282e26d84d652"

    int bytelen=hex.length()/2;

    byte *ptr=new byte[bytelen];

    hexToBytes(hex, ptr);


    unsigned int ret = uiCrc16Cal(ptr, bytelen);

      

    std::cout << ret << std::endl;

    delete [] ptr;

    return 0;

}

說明:

pucY是要計算CRC16的字符數組的入口(需轉換字節數組),ucX是字符數組中字符個數。

上位機收到數據的時候,只要把收到的數據按以上算法進行計算CRC16,結果為0x0000表明數據正確。

言版本:


package cn.longhaul.test;


/**

 *  CRC16的校驗算法工具類

 */

public class Crc16Util {


/**

* 一個字節包含位的數量 8

*/

private static final int BITS_OF_BYTE = 8;

/**

* 多項式

*/

private static final int POLYNOMIAL = 0x8408;

/**

* 初始值

*/

private static final int INITIAL_VALUE = 0xFFFF;


/**

* CRC16 編碼

*

* @param bytes 編碼內容

* @return 編碼結果

*/

public static int crc16(int[] bytes) {

int res = INITIAL_VALUE;

for (int data : bytes) {

res = res ^ data;

for (int i = 0; i < BITS_OF_BYTE; i++) {

res = (res & 0x0001) == 1 ? (res >> 1) ^ POLYNOMIAL : res >> 1;

}

}

return revert(res);

}


/**

* 翻轉16位的高八位和低八位字節

*

* @param src 翻轉數字

* @return 翻轉結果

*/

private static int revert(int src) {

int lowByte = (src & 0xFF00) >> 8;

int highByte = (src & 0x00FF) << 8;

return lowByte | highByte;

}



/** 十六進制轉為IntBytes

* @param s 十六進制串

* @return  int[] bytes

*/

public static int[] hexString2IntBytes(String s) {

int[] bytes;

bytes = new int[s.length() / 2];

for (int i = 0; i < bytes.length; i++) {

bytes[i] = (int) Integer.parseInt(s.substring(2 * i, 2 * i + 2), 16);

}

return bytes;

}


public static void main(String[] args) throws Exception {

int[] data = Crc16Util.hexString2IntBytes("18010206E28011700000020A7D001A0701000600000000");

final int res = Crc16Util.crc16(data);

final String hex = Integer.toHexString(res);

System.out.print(hex);

}


}




python版本:

# -*-coding:utf-8-*-


#  多項式 0x8408

POLYNOMIAL = 0x8408

# 初始值為:0xFFFF

INITIAL_VALUE = 0xFFFF



def crc16(dataarray):

    datalength = int(len(dataarray) / 2)

    datalist = [None] * datalength

    index = 0

    try:

        for index in range(datalength):

            item = dataarray[index * 2:index * 2 + 2]

            datalist[index] = int(item, 16)

        res = INITIAL_VALUE

        for data in datalist:

            res = res ^ data

            for index in range(8):

                if res & 0x0001 == 1:

                    res >>= 1

                    res ^= POLYNOMIAL

                else:

                    res >>= 1

        lowbyte = (res & 0xFF00) >> 8

        highbyte = (res & 0x00FF) << 8

        res = lowbyte | highbyte

        return res

    except ValueError as err:

        print(u'第{0}個數據{1}輸入有誤'.format(index, datalist[index]).encode('utf-8'))

        print(err)



if __name__ == '__main__':

    data_string = '18FF0206E28011700000020A7D001A0702000800000000'  # 16進制輸入的數據流

    print('數據 :"{0:s}"對應的CRC16檢驗碼為:{1:04X}'.format(data_string, crc16(data_string)))

    data_string = '18010206E28011700000020A7D001A0701000600000000'  # 16進制輸入的數據流

    print('數據 :"{0:s}"對應的CRC16檢驗碼為:{1:04X}'.format(data_string, crc16(data_string)))

    data_string = '06FF010400'  # 16進制輸入的數據流

    print('數據 :"{0:s}"對應的CRC16檢驗碼為:{1:04X}'.format(data_string, crc16(data_string)))


因為專注,所以專業

廣東靈天智能科技有限公司是一家rfid電子標簽生產廠家,自成立以來一直致力于超高頻RFID解決方案生產服務商擁有自主生產、研發、銷售體系,其rfid電子標簽,rfid打印機,超高頻讀寫器等產品遠銷國內外。在惠州設有工廠擔任生產部分工作,普及應用領域:電力、銀行、鋼鐵、有色、零售、制造業、服裝、物流、電商、汽車配件等其他...

rfid電子標簽展示

聯系我們

廣東省東莞市中堂鎮潢涌工業橫路2號7棟8層

400-807-2289

daysr@qyswf.com

7*24小時服務

主站蜘蛛池模板: 亚洲中文字幕成人无码| 亚洲精品综合在线影院| 波多野结衣aⅴ在线| 免费情侣作爱视频| av在线网站无码不卡的| 精品国产成人高清在线观看| 久久久精品日韩免费观看| 亚洲色播爱爱爱爱爱爱爱 | 国产精品视频永久免费播放 | 无码精品a∨在线观看中文| 国产亚洲精品yxsp| 亚洲欧美国产另类va| 欧美性xxxxx极品少妇| 精品久久久久久无码免费| 男女做爰无遮挡性视频| 国产在线欧美日韩精品一区| 青青草国产精品亚洲专区无码 | 国产日产韩国精品视频| 熟妇激情内射com| 51国产偷自视频区视频| 人妻少妇乱子伦无码视频专区| 777午夜福利理伦电影网| 国产av综合影院| 少妇高潮无套内谢麻豆传| 高跟肉丝少妇A片在线| 久久精品a亚洲国产v高清不卡| 国产丰满乱子伦无码专| 少妇爆乳无码av无码波霸| 8090成人午夜精品无码| 亚洲男人av天堂男人社区| 真人做人试看60分钟免费| 久久久久人妻精品区一三寸| 四虎影视在线永久免费观看| 亚洲欧美国产va在线播放| 亚洲欧美另类激情综合区| 久久精品亚洲中文字幕无码麻豆| aa片在线观看无码免费| 久久久国产一区二区三区| 免费精品国自产拍在线不卡| 精品无码国产自产拍在线观看 | 日韩精品人成在线播放|