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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? rdio.lst

?? IC卡讀卡器整套
?? LST
?? 第 1 頁 / 共 4 頁
字號:
C51 COMPILER V7.20   RDIO                                                                  12/08/2004 10:59:27 PAGE 1   


C51 COMPILER V7.20, COMPILATION OF MODULE RDIO
OBJECT MODULE PLACED IN RDIO.OBJ
COMPILER INVOKED BY: C:\winXP\keil\C51\BIN\C51.EXE RDIO.C LARGE WARNINGLEVEL(0) BROWSE INCDIR(D:\UsefulDocument\Mifare\M
                    -F RC500\MFRC500 Demo Reader\RC500\For Test) DEBUG OBJECTEXTEND CODE LISTINCLUDE SYMBOLS

line level    source

   1          ///////////////////////////////////////////////////////////////////////////////
   2          //    Copyright (c), Philips Semiconductors Gratkorn
   3          //
   4          //                  (C)PHILIPS Electronics N.V.2000
   5          //       All rights are reserved. Reproduction in whole or in part is 
   6          //      prohibited without the written consent of the copyright owner.
   7          //  Philips reserves the right to make changes without notice at any time.
   8          // Philips makes no warranty, expressed, implied or statutory, including but
   9          // not limited to any implied warranty of merchantibility or fitness for any
  10          //particular purpose, or that the use will not infringe any third party patent,
  11          // copyright or trademark. Philips must not be liable for any loss or damage
  12          //                          arising from its use.
  13          ///////////////////////////////////////////////////////////////////////////////
  14          #include <rdio.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           : RdIO.h RdIO.c
  17      =1  // Created         : 01.03.00
  18      =1  // COMMENT         : Reader IO routines
  19      =1  //================== M O D I F I C A T I O N S ================================
  20      =1  // Date   : 01.03.00           User   : HB
  21      =1  // Comment:     File created
  22      =1  ///////////////////////////////////////////////////////////////////////////////
  23      =1  #ifndef RDIO_H
  24      =1  #define RDIO_H
  25      =1  
  26      =1  // _____________________________________________________________________________
  27      =1  //
  28      =1  //  FUNCTION: OpenIO
  29      =1  //        IN: -
  30      =1  //       OUT: -
  31      =1  //    RETURN: 0     no error occured
  32      =1  //            != 0  error opening IO
  33      =1  //   COMMENT: open and initialise communication channel to the reader module
  34      =1  //
  35      =1  char OpenIO(void);
  36      =1  
  37      =1  // _____________________________________________________________________________
  38      =1  //
  39      =1  //  FUNCTION: WriteIO
  40      =1  //        IN: address   register address in the reader module address space
C51 COMPILER V7.20   RDIO                                                                  12/08/2004 10:59:27 PAGE 2   

  41      =1  //            value     value, which should be written
  42      =1  //       OUT: -
  43      =1  //    RETURN: -
  44      =1  //   COMMENT: This function determines the necessary page address of the 
  45      =1  //            reader module and writes the page number to the page 
  46      =1  //            register and the value to the specified address.
  47      =1  //
  48      =1  void WriteIO(unsigned char Address, unsigned char value);
  49      =1  
  50      =1  // _____________________________________________________________________________
  51      =1  //
  52      =1  //  FUNCTION: ReadIO
  53      =1  //        IN: address  register address in the reader module address space
  54      =1  //       OUT: -
  55      =1  //    RETURN: value    value, which should be read
  56      =1  //   COMMENT: This function determines the necessary page address of the 
  57      =1  //            reader module and writes the page number to the page 
  58      =1  //            register and the value to the specified address.
  59      =1  //
  60      =1  unsigned char ReadIO(unsigned char Address);
  61      =1  
  62      =1  #ifndef SEC_NO_MICORE
  63      =1  //_____________________________________________________________________________
  64      =1  //
  65      =1  //  FUNCTION: WriteIOBlock
  66      =1  //        IN: addr_data   byte stream alternating address and data
  67      =1  //            len         number of address/data pairs
  68      =1  //       OUT: -
  69      =1  //    RETURN: 
  70      =1  //   COMMENT: This function expects a byte stream with alternating one 
  71      =1  //            address byte and the corresponding value byte.
  72      =1  //            The parameter "len" indicates the number of 
  73      =1  //            address/value pairs in the "addr_data" array.
  74      =1  //            e. g. 
  75      =1  //            addr_data = addr1,val1,addr2,val2,addr3,val3,....,addrN,valN
  76      =1  //            len = N
  77      =1  //
  78      =1  void WriteIOBlock(unsigned char *Addr_Data, unsigned short len);
  79      =1  
  80      =1  // _____________________________________________________________________________
  81      =1  //
  82      =1  //  FUNCTION: ReadIOBlock
  83      =1  //        IN: addr_data   byte stream alternating address and data
  84      =1  //            len         number of address/data pairs
  85      =1  //       OUT: addr_data   byte stream alternating address and data
  86      =1  //    RETURN: 
  87      =1  //   COMMENT: This function expects a byte stream with alternating one 
  88      =1  //            address byte followed and the corresponding value byte.
  89      =1  //            The parameter "len" indicates the number of 
  90      =1  //            address/value pairs in the "addr_data" array.
  91      =1  //            The value bytes are filled in by this function.
  92      =1  //            e. g. 
  93      =1  //            addr_data = addr1,val1,addr2,val2,addr3,val3,....,addrN,valN
  94      =1  //            len = N
  95      =1  //
  96      =1  void ReadIOBlock(unsigned char *Addr_Data, unsigned short len);
  97      =1  #endif
  98      =1  
  99      =1  // _____________________________________________________________________________
 100      =1  //
 101      =1  //  FUNCTION: CloseIO
 102      =1  //        IN: -
C51 COMPILER V7.20   RDIO                                                                  12/08/2004 10:59:27 PAGE 3   

 103      =1  //       OUT: -
 104      =1  //    RETURN: -
 105      =1  //   COMMENT: Closing the communication channel to the reader module
 106      =1  //
 107      =1  void CloseIO(void);
 108      =1  
 109      =1  // _____________________________________________________________________________
 110      =1  //
 111      =1  //  FUNCTION: WriteRawIO
 112      =1  //        IN: addr        address within the reader address space (0x00 to 0xFF),
 113      =1  //                        where the value should be written.
 114      =1  //            value       value, which should be written
 115      =1  //       OUT: -
 116      =1  //    RETURN: -
 117      =1  //   COMMENT: Inline code for reading one char from the reader module
 118      =1  //            The reader module is connected to a 8 bit multiplexed data address
 119      =1  //            bus, therefore the lower address byte is directly mapped to the
 120      =1  //            reader module is mapped as follows:
 121      =1  //                     uC             Reader
 122      =1  //                     AD0              A0
 123      =1  //                     AD1              A1
 124      =1  //                      .               .
 125      =1  //                     AD7              A7
 126      =1  //
 127      =1  #define WriteRawIO(addr,value)  *(GpBase + addr) = value;
 128      =1  
 129      =1  // _____________________________________________________________________________
 130      =1  //
 131      =1  //  FUNCTION: ReadRawIO
 132      =1  //        IN: addr        address within the reader address space (0x00 to 0xFF),
 133      =1  //                        which shoud be read.
 134      =1  //       OUT: -
 135      =1  //    RETURN: value of the reader module
 136      =1  //   COMMENT: Inline code for reading one char from the reader module
 137      =1  //            The reader module is connected to a 8 bit multiplexed data address
 138      =1  //            bus, therefore the lower address byte is directly mapped to the
 139      =1  //            reader module is mapped as follows:
 140      =1  //                     uC             Reader
 141      =1  //                     AD0              A0
 142      =1  //                     AD1              A1
 143      =1  //                      .               .
 144      =1  //                     AD7              A7
 145      =1  //
 146      =1  #define ReadRawIO(addr) (*(GpBase + addr))
 147      =1  
 148      =1  extern unsigned char xdata *GpBase;    // variable only for internal use
 149      =1  #endif
  15          #include <main.h>
   1      =1  /****************************************************************************
   2      =1  *                                                                           *
   3      =1  * File:         MAIN.H                                                   *
   4      =1  *                                                                           *
   5      =1  * Version:                                                                  *
   6      =1  *                                                                           *
   7      =1  * Created:      30.08.2001                                                  *
   8      =1  * Last Change:  30.08.2001                                                  *
   9      =1  *                                                                           *
  10      =1  * Author:       Chua Joo Ming                                               *
  11      =1  *                                                                           *
  12      =1  * Compiler:     KEIL C51 V4.10                                              *
  13      =1  *                                                                           *
  14      =1  * Description:  89C52RD2-Firmware for MFRC500 Demo Serial Reader            *
C51 COMPILER V7.20   RDIO                                                                  12/08/2004 10:59:27 PAGE 4   

  15      =1  *                                                                           *
  16      =1  ****************************************************************************/
  17      =1  
  18      =1  
  19      =1  #define AUTODELAY
  20      =1  
  21      =1  #ifdef __SRC
           =1  #define EXTERN
           =1 #else
  24      =1   #define EXTERN                 extern
  25      =1  #endif
  26      =1  
  27      =1  
  28      =1  // Common Defines
  29      =1  
  30      =1  #define uchar                   unsigned char
  31      =1  #define uint                    unsigned int
  32      =1  #define ulong                   unsigned long
  33      =1  
  34      =1  #define FALSE                   0
  35      =1  #define TRUE                    1
  36      =1  
  37      =1  
  38      =1  #define INFO_CNT                23
  39      =1  
  40      =1  
  41      =1  // Ports
  42      =1  
  43      =1  #define ON                      1
  44      =1  #define OFF                     0
  45      =1  
  46      =1  // Configuration for the reader timeout counter 
  47      =1  // Timer 2 (modify OSC_FREQ if another crystal frequency is used)
  48      =1  #define OSC_FREQ                22118400L
  49      =1                                  // *note: when using the 8051RD2 (in 6 clk instructiion cycle,
  50      =1                                  //        use a crystal that is half the value state in OSC_FREQ.
  51      =1                                  //        Example: for OSC_FREQ=22118400, use 11059000 crystal.
  52      =1  
  53      =1  #define BAUD_CNT                                7
  54      =1  
  55      =1  #define BAUD_115200                             256 - (OSC_FREQ/192L)/115200L   // 255
  56      =1  #define BAUD_57600                              256 - (OSC_FREQ/192L)/57600L    // 254
  57      =1  #define BAUD_38400                              256 - (OSC_FREQ/192L)/38400L    // 253
  58      =1  #define BAUD_28800                              256 - (OSC_FREQ/192L)/28800L    // 252
  59      =1  #define BAUD_19200                              256 - (OSC_FREQ/192L)/19200L    // 250
  60      =1  #define BAUD_14400                              256 - (OSC_FREQ/192L)/14400L    // 248
  61      =1  #define BAUD_9600                               256 - (OSC_FREQ/192L)/9600L     // 244
  62      =1  
  63      =1  #ifdef __SRC
           =1  uchar code BaudRateTable[BAUD_CNT] = {
           =1                                                 BAUD_115200,
           =1                                                 BAUD_57600,
           =1                                                 BAUD_38400,
           =1                                                 BAUD_28800,
           =1                                                 BAUD_19200,
           =1                                                 BAUD_14400,
           =1                                                 BAUD_9600
           =1                                       };
           =1 #else
  74      =1   extern uchar code BaudRateTable[BAUD_CNT];
  75      =1  #endif
  76      =1  
C51 COMPILER V7.20   RDIO                                                                  12/08/2004 10:59:27 PAGE 5   

  77      =1  #ifdef __SRC
           =1  uint code CmpTable[BAUD_CNT + 1]   = {
           =1                                                 0x078,
           =1                                                 0x095,
           =1                                                 0x129,
           =1                                                 0x1BD,
           =1                                                 0x252,
           =1                                                 0x37A,
           =1                                                 0x4A3,
           =1                                                 0x6F4
           =1                                       };
           =1 #else
  89      =1   extern uint code CmpTable[BAUD_CNT + 1];
  90      =1  #endif
  91      =1  
  92      =1  // Serial Protocol
  93      =1  
  94      =1  #define SOH                     0x01    // Start of header
  95      =1  #define STX                     0x02    // Start of text
  96      =1  #define ETX                     0x03    // End of text
  97      =1  #define ENQ                     0x05    // Enquire
  98      =1  #define ACK                     0x06    // Acknowledge
  99      =1  #define DLE                     0x10    // Data link escape
 100      =1  #define NAK                     0x15    // Not acknowledge
 101      =1  
 102      =1  
 103      =1  #define MAXREPCNT               2
 104      =1  

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色哟哟一区二区三区| 亚洲精品日产精品乱码不卡| 3d成人h动漫网站入口| 欧美伊人久久大香线蕉综合69| 色系网站成人免费| 日本国产一区二区| 欧美日韩成人一区| 日韩欧美一级在线播放| 日韩精品一区二区三区四区视频| 日韩午夜电影在线观看| 精品久久久久久最新网址| 精品成人一区二区三区| 久久蜜臀中文字幕| 国产精品国产三级国产三级人妇 | 欧美三级视频在线| 欧美亚洲动漫精品| 欧美一级片在线| 欧美v日韩v国产v| 国产情人综合久久777777| 国产精品国产自产拍高清av| 玉米视频成人免费看| 性做久久久久久免费观看 | 一本一本大道香蕉久在线精品| 91美女福利视频| 精品视频在线免费看| 日韩精品一区在线| 中文字幕在线不卡一区二区三区| 亚洲男同1069视频| 免费xxxx性欧美18vr| 国产不卡在线一区| 欧美性生活久久| 久久亚洲免费视频| 一区二区三区鲁丝不卡| 久久精品噜噜噜成人av农村| 懂色av一区二区夜夜嗨| 在线观看91精品国产入口| 欧美xxxxxxxxx| 亚洲日本中文字幕区| 日韩在线一区二区三区| 国产乱对白刺激视频不卡| 91久久精品网| 欧美大尺度电影在线| 中文字幕一区二区在线播放| 水蜜桃久久夜色精品一区的特点 | 91黄色激情网站| 日韩一区二区三区在线| 成人欧美一区二区三区黑人麻豆 | 国内精品国产成人国产三级粉色| av一二三不卡影片| 日韩欧美中文字幕精品| 亚洲日本成人在线观看| 久久99精品一区二区三区| 色狠狠色狠狠综合| 久久色.com| 亚洲成人av一区二区三区| 丰满少妇在线播放bd日韩电影| 欧美美女激情18p| 国产精品三级av在线播放| 日本一区中文字幕| 色综合久久九月婷婷色综合| 精品粉嫩超白一线天av| 亚洲中国最大av网站| 成人动漫在线一区| 日韩欧美成人午夜| 亚洲午夜视频在线| 成人av午夜影院| 欧美成人激情免费网| 亚洲一区在线看| 成人妖精视频yjsp地址| 精品国产一区二区三区忘忧草| 一区二区高清在线| 成人午夜伦理影院| 2021国产精品久久精品| 日韩电影免费一区| 欧美日韩一区成人| 亚洲乱码国产乱码精品精的特点 | 91精品国产综合久久小美女| 有坂深雪av一区二区精品| 国产成人在线视频网站| 精品国产在天天线2019| 免费看欧美美女黄的网站| 欧美日韩高清不卡| 一区二区三区免费| 日本韩国欧美在线| 亚洲女人****多毛耸耸8| 成人激情小说乱人伦| 久久久99精品免费观看| 精品写真视频在线观看| 精品免费国产一区二区三区四区| 亚洲v日本v欧美v久久精品| 色88888久久久久久影院野外| 国产精品久久久久一区| 高清不卡一区二区在线| 久久久久久久久免费| 国产麻豆91精品| 久久午夜国产精品| 国产一区二区三区四| 久久亚洲一区二区三区明星换脸| 久久99精品视频| 久久奇米777| 国产成人日日夜夜| 欧美高清在线一区二区| 成人免费观看av| 136国产福利精品导航| 日本高清免费不卡视频| 夜夜嗨av一区二区三区| 欧美天堂一区二区三区| 亚洲韩国精品一区| 91精品久久久久久蜜臀| 看电视剧不卡顿的网站| 精品国产凹凸成av人网站| 国产在线不卡一区| 日本一区二区三区dvd视频在线| 懂色一区二区三区免费观看| 亚洲欧洲国产专区| 欧美在线free| 喷水一区二区三区| 久久久久久久久久久电影| 成人免费av网站| 一个色妞综合视频在线观看| 91麻豆精品国产91久久久更新时间 | 久久在线观看免费| 成人国产精品免费| 亚洲在线视频一区| 91精品国产综合久久久久久漫画| 免费看欧美美女黄的网站| 国产无遮挡一区二区三区毛片日本| 国产成人精品综合在线观看 | 99精品国产91久久久久久| 亚洲一区中文日韩| 精品久久人人做人人爰| 成人视屏免费看| 亚洲午夜精品17c| 日韩欧美亚洲国产另类| 国产1区2区3区精品美女| 亚洲综合丝袜美腿| 精品福利一二区| 色婷婷激情综合| 蜜桃一区二区三区在线观看| 国产精品日韩精品欧美在线| 欧美性猛片aaaaaaa做受| 卡一卡二国产精品| 亚洲美女少妇撒尿| 精品国产一区二区精华| aaa亚洲精品| 蜜臀精品久久久久久蜜臀 | 亚洲一区二区av电影| 精品国产乱码久久久久久1区2区| av电影在线不卡| 日本欧美一区二区三区| 国产精品久久久久久久裸模 | 亚洲精品第1页| 精品成人一区二区| 欧美视频中文字幕| 国产福利一区二区三区在线视频| 亚洲在线观看免费视频| 中文字幕精品综合| 欧美一区二区免费观在线| 91在线精品秘密一区二区| 另类小说一区二区三区| 亚洲另类中文字| 国产欧美日韩一区二区三区在线观看 | 欧美剧在线免费观看网站| 成人永久看片免费视频天堂| 日本麻豆一区二区三区视频| 综合久久久久久| 2021中文字幕一区亚洲| 欧美喷潮久久久xxxxx| 99久久国产综合精品女不卡| 美女视频一区在线观看| 一个色综合网站| 中文字幕的久久| 精品国产亚洲一区二区三区在线观看| 一本大道久久a久久精品综合| 国产一区二区免费看| 天天综合天天做天天综合| 亚洲色图色小说| 中文字幕av一区二区三区免费看 | 国产午夜精品一区二区三区四区| 91麻豆精品国产自产在线观看一区 | 国模冰冰炮一区二区| 日韩不卡在线观看日韩不卡视频| 亚洲免费视频中文字幕| 中文字幕av一区 二区| 日韩精品中文字幕在线一区| 欧美日韩国产经典色站一区二区三区| av在线不卡电影| 成人免费高清视频在线观看| 国产成人综合视频| 国产精品一区一区三区| 久久成人18免费观看| 麻豆国产精品官网| 奇米888四色在线精品| 日韩中文字幕亚洲一区二区va在线 | 亚洲1区2区3区4区| 亚洲成人tv网| 日日摸夜夜添夜夜添精品视频 | 高清不卡一区二区| 国产成人精品免费一区二区| 国产精品亚洲а∨天堂免在线|