亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? main.lst

?? 一個射頻卡開發板 iso4443規范 學習智能卡的好資料
?? LST
?? 第 1 頁 / 共 5 頁
字號:
  35      =1  extern char *gets (char *, int n);
  36      =1  extern int scanf (const char *, ...);
  37      =1  extern int sscanf (char *, const char *, ...);
  38      =1  extern int puts (const char *);
  39      =1  
  40      =1  #pragma RESTORE
  41      =1  
  42      =1  #endif
  43      =1  
  25          #include <m500a.h>
   1      =1  ///////////////////////////////////////////////////////////////////////////////
   2      =1  //    Copyright (c), Philips Semiconductors Gratkorn
   3      =1  //
   4      =1  //                     (C)PHILIPS Electronics N.V. 2000
   5      =1  //       All rights are reserved. Reproduction in whole or in part is 
   6      =1  //      prohibited without the written consent of the copyright owner.
   7      =1  //  Philips reserves the right to make changes without notice at any time.
   8      =1  // Philips makes no warranty, expressed, implied or statutory, including but
   9      =1  // not limited to any implied warranty of merchantibility or fitness for any
  10      =1  //particular purpose, or that the use will not infringe any third party patent,
  11      =1  // copyright or trademark. Philips must not be liable for any loss or damage
  12      =1  //                          arising from its use.
  13      =1  ///////////////////////////////////////////////////////////////////////////////
  14      =1  //
  15      =1  // Projekt         : M500
  16      =1  // Files           : M500A.h M500A.c
  17      =1  // Created         : 01.04.00
  18      =1  //
  19      =1  // COMMENT: 
  20      =1  //               This header file can be used either for a uC environment or for 
  21      =1  //           Win32 DLL. Therefore the header MfOsDefs.h is included. Depending 
  22      =1  //           on the environment different definitions are used for "FCT_PREF". 
  23      =1  //           For the microcontroller system, all functions have the return type
  24      =1  //          "char". For the Win32 DLL the return types are changed to "long". 
C51 COMPILER V7.20   MAIN                                                                  12/08/2004 10:59:26 PAGE 9   

  25      =1  //           Further more the DLL functions need to be exported, so the 
  26      =1  //           corresponding declarations are made. 
  27      =1  // MODIFICATIONS:
  28      =1  // 01.04.00  HB  first issue
  29      =1  ///////////////////////////////////////////////////////////////////////////////
  30      =1  #ifndef M500A_H
  31      =1  #define M500A_H
  32      =1  
  33      =1  #ifdef __cplusplus
           =1 extern "C"
           =1 {
           =1 #endif
  37      =1  
  38      =1  // General Include File for serveral defines concerning conditional library
  39      =1  // compilation and microcontroller usage
  40      =1  //#include <MfOsDefs.h>
  41      =1  
  42      =1  
  43      =1  // P I C C - C O M M A N D S
  44      =1  // commands which are handled by the tag
  45      =1  // Each tag command is written to the reader IC and transfered via RF
  46      =1  #define PICC_REQSTD        0x26                 // request idle
  47      =1  #define PICC_REQALL        0x52                 // request all
  48      =1  #define PICC_ANTICOLL1     0x93                 // anticollision level 1
  49      =1  #define PICC_ANTICOLL2     0x95                 // anticollision level 2
  50      =1  #define PICC_ANTICOLL3     0x97                 // anticollision level 3
  51      =1  #define PICC_AUTHENT1A     0x60                 // authentication step 1
  52      =1  #define PICC_AUTHENT1B     0x61                 // authentication step 2
  53      =1  #define PICC_READ          0x30                 // read block
  54      =1  #define PICC_WRITE         0xA0                 // write block
  55      =1  #define PICC_DECREMENT     0xC0                 // decrement value
  56      =1  #define PICC_INCREMENT     0xC1                 // increment value
  57      =1  #define PICC_RESTORE       0xC2                 // restore command code
  58      =1  #define PICC_TRANSFER      0xB0                 // transfer command code
  59      =1  #define PICC_HALT          0x50                 // halt
  60      =1  
  61      =1  // Mifare Error Codes
  62      =1  // Each function returns a status value, which corresponds to the
  63      =1  // mifare error codes. 
  64      =1  #define MI_OK                           0
  65      =1  #define MI_CHK_OK                       0
  66      =1  #define MI_CRC_ZERO                     0
  67      =1  
  68      =1  #define MI_CRC_NOTZERO                  1
  69      =1  
  70      =1  #define MI_NOTAGERR                     (-1)
  71      =1  #define MI_CHK_FAILED                   (-1)
  72      =1  #define MI_CRCERR                       (-2)
  73      =1  #define MI_CHK_COMPERR                  (-2)
  74      =1  #define MI_EMPTY                        (-3)
  75      =1  #define MI_AUTHERR                      (-4)
  76      =1  #define MI_PARITYERR                    (-5)
  77      =1  #define MI_CODEERR                      (-6)
  78      =1  
  79      =1  #define MI_SERNRERR                     (-8)
  80      =1  #define MI_KEYERR                       (-9)
  81      =1  #define MI_NOTAUTHERR                   (-10)
  82      =1  #define MI_BITCOUNTERR                  (-11)
  83      =1  #define MI_BYTECOUNTERR                 (-12)
  84      =1  #define MI_IDLE                         (-13)
  85      =1  #define MI_TRANSERR                     (-14)
  86      =1  #define MI_WRITEERR                     (-15)
C51 COMPILER V7.20   MAIN                                                                  12/08/2004 10:59:26 PAGE 10  

  87      =1  #define MI_INCRERR                      (-16)
  88      =1  #define MI_DECRERR                      (-17)
  89      =1  #define MI_READERR                      (-18)
  90      =1  #define MI_OVFLERR                      (-19)
  91      =1  #define MI_POLLING                      (-20)
  92      =1  #define MI_FRAMINGERR                   (-21)
  93      =1  #define MI_ACCESSERR                    (-22)
  94      =1  #define MI_UNKNOWN_COMMAND              (-23)
  95      =1  #define MI_COLLERR                      (-24)
  96      =1  #define MI_RESETERR                     (-25)
  97      =1  #define MI_INITERR                      (-25)
  98      =1  #define MI_INTERFACEERR                 (-26)
  99      =1  #define MI_ACCESSTIMEOUT                (-27)
 100      =1  #define MI_NOBITWISEANTICOLL            (-28)
 101      =1  #define MI_QUIT                         (-30)
 102      =1  
 103      =1  #define MI_RECBUF_OVERFLOW              (-50) 
 104      =1  #define MI_SENDBYTENR                   (-51)
 105      =1          
 106      =1  #define MI_SENDBUF_OVERFLOW             (-53)
 107      =1  #define MI_BAUDRATE_NOT_SUPPORTED       (-54)
 108      =1  #define MI_SAME_BAUDRATE_REQUIRED       (-55)
 109      =1  
 110      =1  #define MI_WRONG_PARAMETER_VALUE        (-60)
 111      =1  
 112      =1  #define MI_BREAK                        (-99)
 113      =1  #define MI_NY_IMPLEMENTED               (-100)
 114      =1  #define MI_NO_MFRC                      (-101)
 115      =1  #define MI_MFRC_NOTAUTH                 (-102)
 116      =1  #define MI_WRONG_DES_MODE               (-103)
 117      =1  #define MI_HOST_AUTH_FAILED             (-104)
 118      =1  
 119      =1  #define MI_WRONG_LOAD_MODE              (-106)
 120      =1  #define MI_WRONG_DESKEY                 (-107)
 121      =1  #define MI_MKLOAD_FAILED                (-108)
 122      =1  #define MI_FIFOERR                      (-109)
 123      =1  #define MI_WRONG_ADDR                   (-110)
 124      =1  #define MI_DESKEYLOAD_FAILED            (-111)
 125      =1  
 126      =1  #define MI_WRONG_SEL_CNT                (-114)
 127      =1  
 128      =1  #define MI_WRONG_TEST_MODE              (-117)
 129      =1  #define MI_TEST_FAILED                  (-118)
 130      =1  #define MI_TOC_ERROR                    (-119)
 131      =1  #define MI_COMM_ABORT                   (-120)
 132      =1  #define MI_INVALID_BASE                 (-121)
 133      =1  #define MI_MFRC_RESET                   (-122)
 134      =1  #define MI_WRONG_VALUE                  (-123)
 135      =1  #define MI_VALERR                       (-124)
 136      =1  
 137      =1  // _____________________________________________________________________________
 138      =1  //
 139      =1  //  FUNCTION: M500PcdReset
 140      =1  //        IN: -
 141      =1  //       OUT: -
 142      =1  //    RETURN: MI_OK
 143      =1  //            MI_RESETERR
 144      =1  //            MI_INTERFACEERR
 145      =1  //   COMMENT: This function initiates a reset of the reader IC. Note, that
 146      =1  //            the reset pin of the reader has to be connected to the 
 147      =1  //            expected port pin of the microcontroller.
 148      =1  //
C51 COMPILER V7.20   MAIN                                                                  12/08/2004 10:59:26 PAGE 11  

 149      =1  char M500PcdReset(void);
 150      =1  
 151      =1  // _____________________________________________________________________________
 152      =1  //
 153      =1  //  FUNCTION: M500PcdConfig
 154      =1  //        IN: -
 155      =1  //       OUT: -
 156      =1  //    RETURN: MI_OK
 157      =1  //            MI_RESETERR
 158      =1  //            MI_INTERFACEERR
 159      =1  //   COMMENT: Configuration of the reader IC. This function has to be called
 160      =1  //            before the first data is written to the reader. A reset 
 161      =1  //            is initiated and several registers are set.
 162      =1  //
 163      =1  char M500PcdConfig(void);
 164      =1  
 165      =1  // _____________________________________________________________________________
 166      =1  //
 167      =1  //  FUNCTION: M500PcdInOutSlaveConfig
 168      =1  //        IN: -
 169      =1  //       OUT: -
 170      =1  //    RETURN: MI_OK
 171      =1  //            MI_UNKNOWN_COMMAND
 172      =1  //            MI_ACCESSTIMEOUT
 173      =1  //   COMMENT: The reader IC is able to communicate with another reader IC
 174      =1  //            via the digital "mifare in" and "mifare out" interface. Therefore
 175      =1  //            one reader acts as a master and sends commands via "mifare out".
 176      =1  //            The other reader ic acts as a slave and receives data via
 177      =1  //            "mifare in" interface. The slave module can not be initialised
 178      =1  //            by the microcontroller because only the "mifare in/out"
 179      =1  //            interface is connected.For this reason, the slave module has 
 180      =1  //            to be initialised once. For that the appropriate parameter 
 181      =1  //            settings are written to 
 182      =1  //            the E2PROM. After POR (power on reset) the IC reads these settings
 183      =1  //            and initialises automatically as slave.
 184      =1  //
 185      =1  char M500PcdInOutSlaveConfig(void);
 186      =1  
 187      =1  // _____________________________________________________________________________
 188      =1  //
 189      =1  //  FUNCTION: M500PcdInOutMasterConfig
 190      =1  //        IN: -
 191      =1  //       OUT: -
 192      =1  //    RETURN: MI_OK
 193      =1  //   COMMENT: Corresponding to the slave configuration routine. This function
 194      =1  //            initialises the master reader IC. The function is additional
 195      =1  //            to the standard configuration "M500PcdConfig".
 196      =1  //
 197      =1  char M500PcdInOutMasterConfig(void);
 198      =1  
 199      =1  // _____________________________________________________________________________
 200      =1  //
 201      =1  //  FUNCTION: MfPcdLoadMk
 202      =1  //        IN: kl_mode     PICC_AUTHENT1A or PICC_AUTHENT1B 
 203      =1  //                              selects master key A or master key B 
 204      =1  //                        KS0, KS1, KS2 selects one of the three master key sets.
 205      =1  //            key_addr    spec. the key RAM address to which the data shall be 
 206      =1  //                        written (0..15)
 207      =1  //            mk          pointer to a 6 byte authentication key
 208      =1  //       OUT: -
 209      =1  //    RETURN: MI_OK
 210      =1  //   COMMENT: In order to be "calling compatibel" to former libraries, this 
C51 COMPILER V7.20   MAIN                                                                  12/08/2004 10:59:26 PAGE 12  

 211      =1  //            function enables to store all keys in the microcontroller.
 212      =1  //            When calling the authentication function "M500PiccAuth", 
 213      =1  //            these keys can be used.
 214      =1  //            Note: This concept supports backward compatibility for the 
 215      =1  //            application software, but does not fulfill the same security 
 216      =1  //            level because keys are in this case stored autside the secure key 
 217      =1  //            memory of the MF RC500.
 218      =1  //
 219      =1  char M500PcdLoadMk(unsigned char  kl_mode, 
 220      =1                     unsigned char  key_addr, 
 221      =1                     unsigned char  *mk);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品一区二区三区免费播放| 欧美日韩激情一区| av在线播放不卡| 91精品国产综合久久香蕉麻豆| 国产精品久久久久一区二区三区| 美女一区二区视频| 色综合色综合色综合色综合色综合 | 欧美激情一区二区三区不卡| 亚洲国产美国国产综合一区二区| 丁香网亚洲国际| 欧美一区日韩一区| 亚洲已满18点击进入久久| 国产精品一区二区果冻传媒| 欧美日韩国产一级片| 日韩一区欧美一区| 粉嫩av一区二区三区在线播放| 91精品久久久久久久99蜜桃| 亚洲一区二区三区四区在线观看 | 亚洲欧美自拍偷拍| 国产电影一区二区三区| 日韩一区二区影院| 五月天婷婷综合| 色国产综合视频| 亚洲色欲色欲www| 国产精品91xxx| 久久只精品国产| 极品尤物av久久免费看| 日韩一区二区三区四区| 日本不卡一区二区三区| 欧美日韩一卡二卡三卡| 香港成人在线视频| 在线不卡一区二区| 亚洲成a人v欧美综合天堂| 欧美在线免费观看亚洲| 亚洲一区视频在线| 欧美性视频一区二区三区| 亚洲一区二区视频在线| 欧美综合天天夜夜久久| 亚洲18色成人| 欧美电影影音先锋| 免费欧美在线视频| 精品国产一区二区精华| 激情深爱一区二区| 中文字幕av免费专区久久| k8久久久一区二区三区| 亚洲精品日产精品乱码不卡| 欧美最猛性xxxxx直播| 午夜私人影院久久久久| 日韩欧美亚洲一区二区| 国产成人在线视频网址| 亚洲视频在线一区二区| 91高清视频在线| 天堂久久久久va久久久久| 欧美变态凌虐bdsm| www.性欧美| 亚洲成a人v欧美综合天堂| 精品国产欧美一区二区| 成人av网址在线| 亚洲成人激情自拍| 精品国产污污免费网站入口 | 奇米777欧美一区二区| 精品成人在线观看| 91一区二区在线| 日韩精品电影在线| 久久综合久久久久88| 99re视频精品| 久久不见久久见免费视频7| 中文字幕国产一区二区| 欧美日韩精品一区二区三区蜜桃 | 亚洲久草在线视频| 欧美挠脚心视频网站| 国产福利不卡视频| 午夜欧美大尺度福利影院在线看| 欧美成人艳星乳罩| 日本韩国欧美一区| 国内不卡的二区三区中文字幕| 亚洲精品久久嫩草网站秘色| 欧美不卡123| 欧美视频自拍偷拍| 国产成人av影院| 日韩成人dvd| 玉足女爽爽91| 国产欧美va欧美不卡在线| 欧美人与z0zoxxxx视频| 91污在线观看| 国产99久久久精品| 久久99久久久久久久久久久| 亚洲欧美日韩久久精品| 国产欧美一区二区精品秋霞影院 | 国产欧美一区二区精品性色 | 欧美激情在线一区二区| 欧美一区二区成人6969| 91小视频免费观看| 成熟亚洲日本毛茸茸凸凹| 日本美女视频一区二区| 亚洲码国产岛国毛片在线| 中文字幕成人网| 久久久久国产一区二区三区四区 | 日本欧美肥老太交大片| 亚洲综合免费观看高清完整版在线 | 日韩中文字幕亚洲一区二区va在线| 国产精品妹子av| 国产日韩av一区二区| 精品国免费一区二区三区| 日韩精品一区在线| 日韩一级免费一区| 91精品国产综合久久福利软件 | 久久精品夜夜夜夜久久| wwwwww.欧美系列| 精品精品国产高清a毛片牛牛| 欧美电影在线免费观看| 欧美夫妻性生活| 欧美日韩国产精品成人| 欧美男男青年gay1069videost | 视频在线在亚洲| 午夜av电影一区| 日韩精品乱码免费| 男女男精品网站| 免费三级欧美电影| 美日韩一区二区三区| 九九九久久久精品| 国产精品一区二区91| 国产a级毛片一区| 成人在线视频一区| aaa亚洲精品| 色综合天天天天做夜夜夜夜做| 99久久99精品久久久久久| 97aⅴ精品视频一二三区| 91麻豆国产福利在线观看| 在线视频欧美区| 欧美日韩www| 日韩美女天天操| 久久美女艺术照精彩视频福利播放 | 一区二区高清在线| 亚洲成a天堂v人片| 免费av网站大全久久| 精品无码三级在线观看视频| 国产伦精品一区二区三区免费| 粉嫩av一区二区三区| 91久久免费观看| 在线播放日韩导航| 精品国产区一区| 亚洲婷婷综合久久一本伊一区| 亚洲一区二区三区视频在线播放| 午夜激情一区二区三区| 狠狠色综合日日| 99re热视频精品| 欧美一区二区三区在| 久久久九九九九| 亚洲精品视频在线看| 日韩av一区二| 丁香啪啪综合成人亚洲小说 | 亚洲国产成人av网| 蜜桃91丨九色丨蝌蚪91桃色| 精品夜夜嗨av一区二区三区| 91免费版在线| 欧美大黄免费观看| 亚洲精品视频免费观看| 激情综合网激情| 91免费精品国自产拍在线不卡| 日韩欧美精品在线视频| 亚洲精品免费在线观看| 国产在线视频一区二区三区| 色综合天天视频在线观看 | 久久精品一区二区三区av| 一区二区三区四区在线播放| 麻豆免费看一区二区三区| 91女神在线视频| 久久精品一区八戒影视| 日韩国产欧美在线视频| av在线不卡免费看| 久久综合国产精品| 午夜欧美视频在线观看| aaa欧美大片| 精品成人一区二区三区| 天天色天天操综合| 色一情一伦一子一伦一区| 国产日韩影视精品| 久久超级碰视频| 在线不卡a资源高清| 亚洲综合色成人| 色综合咪咪久久| 中文字幕巨乱亚洲| 国产成人亚洲综合色影视| 欧美大片一区二区三区| 免费看日韩a级影片| 欧美人与z0zoxxxx视频| 亚洲综合999| 欧美性一级生活| 亚洲一区精品在线| 97久久久精品综合88久久| 国产精品美女一区二区三区| 国产成人丝袜美腿| 久久天堂av综合合色蜜桃网| 精品一区二区三区影院在线午夜| 日韩一区二区免费视频| 麻豆一区二区三| 欧美电影免费观看高清完整版在 | 欧美va亚洲va香蕉在线| 日本亚洲三级在线|