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

RFID编程

开发平台:

C/C++

  1. #include<reg52.h>
  2. #include<rc500.h>
  3. char PcdLoadKeyE2(uint startaddr)
  4. {
  5.     char status;
  6.     idata struct TranSciveBuffer{uchar MfCommand;
  7.                                  uchar MfLength;
  8.                                  uchar MfData[2];
  9.                                 }MfComData;
  10.     struct TranSciveBuffer *pi;
  11.     pi=&MfComData;
  12.     MfComData.MfCommand=PCD_LOADKEYE2;
  13.     MfComData.MfLength=2;
  14.     MfComData.MfData[0]=startaddr&0xff;
  15.     MfComData.MfData[1]=(startaddr>>8)&0xff;
  16.     status=PcdComTransceive(pi);
  17.     return status;
  18. }