PcdAuthKey.c
资源名称:RC500.rar [点击查看]
上传用户:hbtfgg
上传日期:2021-12-10
资源大小:16k
文件大小:1k
源码类别:
RFID编程
开发平台:
C/C++
- #include <reg52.h>
- #include "rc500.h"
- char PcdAuthKey(uchar *keys)
- {
- char status;
- uchar i;
- idata struct TranSciveBuffer{uchar MfCommand;
- uchar MfLength;
- uchar MfData[12];
- }MfComData;
- struct TranSciveBuffer *pi;
- pi=&MfComData;
- PcdSetTmo(106);
- MfComData.MfCommand=PCD_LOADKEY;
- MfComData.MfLength=12;
- for(i=0;i<12;i++)
- {
- MfComData.MfData[i]=*(keys+i);
- }
- status=PcdComTransceive(pi);
- return status;
- }