原创 Build the even parity bit for EM4100 format of RFID

2011-9-2 10:00 3263 15 18 分类: 消费电子

Build the even parity bit for EM4100 format of RFID

 

Developing the EM4100 protocol of RFID, we have to understand the means of EVEN PARITY BIT of the whole 64-byte data.

From http://www.priority1design.com.au/em4100_protocol.html , we know that we must calc 10 goups even parity bit, and 4 column party bits. But it is not Clear for the document to understand how to build even parity bit?

 

In our code, we just suppose the even parity rule as follow:

RULE: The Even Parity Bit SHOULD BE to add all data waiting to be read, then check the sum is whether even or odd. If sum is even, then data is ok. Or we should discard the wrong EM4100 format data.

 

The EM4100 format:

1.jpg

 

The even parity checking code as below:

// rfid_check_even_parity_bit: Suppose we had received whole EM4100 64-byte data
bool rfid_check_even_parity_bit(U8* buf)
{
        // check 10 groups even parity bits
        U32 sum = 0;
        U32 i = 0, j = 0;
        for(i=0; i<10; i++) {
            sum = buf[9+5*i] + buf[10+5*i] + buf[11+5*i] + buf[12+5*i];
            sum = sum & 0x01;
            if(sum != buf[13+5*i]) { return FALSE; }
        }
       
        // check 4 column parity bits
        for(i=0; i<4; i++) {
            sum = 0;
            for(j=0; j<10; j++)
                sum += buf[9+5*j+i];
            sum = sum & 0x01;
            if(sum != buf[9+5*10+i]) { return FALSE; }
        }
       
        return TRUE;
} 

 

Why build even parity bit here?

We suppose, there are 9's '1' bits as head. If the card data is 0xff. If we use odd parity bit here, then two 0xff will build new 9's '1' bits, whch perhaps will bring us a wrong head. Then the even parity will give '0' bit follow 4's '1' bits(0xff). So the 9's '1' will be the only head in the whole 64-byte EM4100 data.

 

Written by Allen Zhan

2011.09.02

Release on <EETC>

 

PARTNER CONTENT

文章评论3条评论)

登录后参与讨论

allen_zhan_752827529 2011-9-2 09:59

小编 Ana, 我都是习惯直接在编辑框里面敲~ 哎~ 看来要改改习惯```

用户1602177 2011-9-2 09:50

Allen,你好!建议先在TXT中编辑您的文本文档,然后复制粘贴到网站中。电子工程专辑的英文名称是EEtimes China,简称是EETC~

allen_zhan_752827529 2011-9-2 09:30

Mike and Ana, 两个问题: 1. Type English words 的时候, 上传发表, 发现换行似乎不能正确理解空格, 造成换行断字的现象. 检查这个文章, 将会发现这个特点. 好好的英文单词被拆成两行. 还是说, 我不会某种编辑技巧? 2. <电子工程专辑> 的英文名称以及英文简称是? 网页上没有明显提示. 谢谢.
相关推荐阅读
allen_zhan 2023-02-27 19:08
对"三极管"译名由来的探讨
想讨论一个有意思的话题:今天中国大陆的电子业界, 为何将 BJT 称呼为 "三极管"? 或因其象形, 前辈自行进行随意的不严谨定义么? 带着疑问我们做了一下延伸查阅, 或得出这样的结论, 即中译名"三...
allen_zhan 2023-02-19 18:15
对知乎提问"为何三极管的一个PN结工作在反偏"的回复
将这个回复, 也发表在博文中, 作为自己的一个学习笔记叭.知乎问题: "三极管里面的PN结相当于二极管,为什么里面PN结加反向电压也能导通?"我的回复:首先, 二极管的"反向"概念, 容易给初学者某种...
allen_zhan 2023-02-18 10:17
从肖特基二极管到PN结与三极管
最近数个工作日的兴趣是回顾电子基础器件的发明/发展历史, 期待夯实技术基础的底蕴. 在学习与搜索资料的过程中, 顺便对知乎的一个同学的基础问题, 进行了回复. 不小心回复一下就成了千字文, 觉得挺有趣...
allen_zhan 2023-01-28 11:53
微功率 ISM 频率探讨相关文档组总结
不知不觉, 自开启关于微功率频率的话题起, 即从第一份文章写就到今天总结之日, 已经接近 10 个工作日左右. 早先的想法是对工程界未来的微功率设备相关项目, 从项目规划开始, 对选择系统, 频率, ...
allen_zhan 2023-01-27 22:50
关于 LoRa 应用场景的讨论
说明: 本文中斜体部分表示来自公告文件的部分内容剪贴或合并整理.1. "第52号文" 对 470MHz 的约束引自 如下:(四)民用计量仪表限在建筑楼宇、住宅小区及村庄等小范围内组网应用,任意时刻限...
allen_zhan 2023-01-25 13:24
ISM 频段中 2.4G 与 5.8GHz 设备的使用与限制
说明: 本文中斜体部分表示来自公告文件的部分内容剪贴或合并整理.1. ISM 频段定义中的 2.4G 与 5.8GHz正如同 文中确定的, 2.4G, 5.8GHz 属于中国大陆 ISM 频段的定义...
EE直播间
更多
我要评论
3
15
关闭 站长推荐上一条 /3 下一条