PcdAuthKey.c
上传用户:hbtfgg
上传日期:2021-12-10
资源大小:16k
文件大小:1k
源码类别:

RFID编程

开发平台:

C/C++

  1. #include <reg52.h>
  2. #include "rc500.h"
  3. char PcdAuthKey(uchar *keys)
  4. {
  5.     char status;
  6.     uchar i;
  7.     idata struct TranSciveBuffer{uchar MfCommand;
  8.                                  uchar MfLength;
  9.                                  uchar MfData[12];
  10.                                 }MfComData;
  11.     struct TranSciveBuffer *pi;
  12.     pi=&MfComData;
  13.     PcdSetTmo(106);
  14.     MfComData.MfCommand=PCD_LOADKEY;
  15.     MfComData.MfLength=12;
  16.     for(i=0;i<12;i++)
  17.     {
  18.         MfComData.MfData[i]=*(keys+i);
  19.     }
  20.     status=PcdComTransceive(pi);
  21.     return status;
  22. }