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

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

?? rdio.lst

?? SSD5課程《數據結構與算法》中的練習
?? LST
?? 第 1 頁 / 共 4 頁
字號:
C51 COMPILER V8.01   RDIO                                                                  04/04/2006 11:26:29 PAGE 1   


C51 COMPILER V8.01, COMPILATION OF MODULE RDIO
OBJECT MODULE PLACED IN RDIO.OBJ
COMPILER INVOKED BY: C:\Keil\C51\BIN\C51.EXE RDIO.C LARGE WARNINGLEVEL(0) BROWSE INCDIR(D:\UsefulDocument\Mifare\MF RC50
                    -0\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 V8.01   RDIO                                                                  04/04/2006 11:26:29 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 V8.01   RDIO                                                                  04/04/2006 11:26:29 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 V8.01   RDIO                                                                  04/04/2006 11:26:29 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 V8.01   RDIO                                                                  04/04/2006 11:26:29 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  

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲综合激情网| 免费看日韩a级影片| 日韩欧美一区在线| 丁香激情综合国产| 老司机精品视频在线| 亚洲色图一区二区三区| 久久综合中文字幕| 欧美日韩午夜在线视频| 93久久精品日日躁夜夜躁欧美| 日本怡春院一区二区| 亚洲图片激情小说| 中文字幕乱码亚洲精品一区| 日韩免费成人网| 在线观看av一区| 成人免费看黄yyy456| 国产在线一区二区| 亚洲成a人片综合在线| 亚洲精品写真福利| 国产精品国产三级国产普通话99| 日韩免费观看高清完整版| 欧美四级电影在线观看| 91捆绑美女网站| 国产91高潮流白浆在线麻豆| 精品一区二区在线视频| 午夜国产不卡在线观看视频| 亚洲精品视频自拍| 亚洲视频一区在线观看| 国产精品久久久久国产精品日日| 久久综合久久综合久久| 欧美一级高清片| 欧美丰满一区二区免费视频| 91福利区一区二区三区| 99国产一区二区三精品乱码| 成人在线综合网站| 欧美无砖专区一中文字| 91一区在线观看| 成人黄色在线网站| 成人午夜激情视频| 丁香五精品蜜臀久久久久99网站| 国产乱人伦精品一区二区在线观看| 久久国产精品色婷婷| 免费在线视频一区| 久久精品国产澳门| 久88久久88久久久| 韩国精品久久久| 国产一区久久久| 国产不卡在线播放| 成人亚洲一区二区一| a级高清视频欧美日韩| 97久久精品人人做人人爽| 成人av综合在线| 99久久亚洲一区二区三区青草| 成人在线一区二区三区| 不卡一卡二卡三乱码免费网站| a级精品国产片在线观看| 91农村精品一区二区在线| 欧美婷婷六月丁香综合色| 欧美日韩高清一区二区不卡| 欧美一二三四在线| 欧美精品一区二区三区很污很色的| xnxx国产精品| 国产精品欧美一区二区三区| 一区二区三区在线免费播放| 亚洲aaa精品| 国内精品伊人久久久久av影院| 丰满亚洲少妇av| 色美美综合视频| 欧美一区二区三区影视| 国产欧美视频一区二区| 亚洲精品中文字幕在线观看| 日本午夜一区二区| 国产精品一区二区免费不卡| 91热门视频在线观看| 91精品国产一区二区三区香蕉| 精品国产网站在线观看| 中文字幕在线观看不卡视频| 亚洲电影在线播放| 国内精品自线一区二区三区视频| 91一区二区三区在线观看| 91精品综合久久久久久| 欧美高清在线视频| 舔着乳尖日韩一区| 成人性生交大合| 欧美日韩二区三区| 国产婷婷色一区二区三区四区| 亚洲欧美日韩国产另类专区| 久久精品久久综合| 91美女在线视频| 精品国产污网站| 亚洲激情第一区| 国产露脸91国语对白| 欧美日韩国产天堂| 国产精品天天看| 欧洲一区在线观看| 国产精品美女一区二区| 日韩精品成人一区二区在线| 北条麻妃国产九九精品视频| 91精品国产综合久久福利| 亚洲另类色综合网站| 国产在线精品一区二区夜色 | 99视频一区二区| 日韩一二三区视频| 亚洲人xxxx| 国产不卡在线一区| 日韩精品自拍偷拍| 亚洲影院理伦片| 波波电影院一区二区三区| 精品对白一区国产伦| 午夜欧美在线一二页| 91蜜桃传媒精品久久久一区二区| 久久综合av免费| 日本va欧美va瓶| 欧美在线视频日韩| 中文字幕日本乱码精品影院| 韩国女主播成人在线| 欧美精品久久久久久久久老牛影院| 中文字幕视频一区| 福利电影一区二区| 久久综合色婷婷| 久久电影国产免费久久电影| 欧美顶级少妇做爰| 一区二区三区中文在线观看| 91香蕉视频污| 亚洲欧美怡红院| 成人av网址在线| 国产视频一区二区三区在线观看| 久久99精品久久久久久国产越南 | 日本乱人伦一区| 亚洲欧洲精品一区二区三区| 国产电影精品久久禁18| 久久青草国产手机看片福利盒子| 精品系列免费在线观看| 欧美精品一区二区三区一线天视频| 日本欧美在线观看| 日韩一区二区影院| 美女www一区二区| 精品乱码亚洲一区二区不卡| 麻豆精品一区二区三区| 日韩欧美中文字幕精品| 九九国产精品视频| 久久亚洲综合色| 成人夜色视频网站在线观看| 国产精品久久久久久久第一福利 | 日韩精品一区国产麻豆| 日日嗨av一区二区三区四区| 丁香六月综合激情| 久久看人人爽人人| 国产老女人精品毛片久久| 中文子幕无线码一区tr| 国产白丝精品91爽爽久久| 国产视频一区二区三区在线观看| 日韩一区欧美二区| 精品理论电影在线观看 | 国产一区二区三区久久悠悠色av | 日韩一级二级三级| 日韩成人一区二区| 久久久久久夜精品精品免费| 91精品国产综合久久久蜜臀粉嫩 | 日韩专区在线视频| 7777精品伊人久久久大香线蕉经典版下载 | 久久电影网站中文字幕| 538prom精品视频线放| 美女被吸乳得到大胸91| 亚洲精品一区二区三区香蕉| 国产精品99久久久| 日本一区二区三区在线不卡| 久久精品国产精品青草| 中文一区二区完整视频在线观看| 成人免费观看男女羞羞视频| 亚洲人成精品久久久久| 欧美性受xxxx| 国产一二三精品| 中文字幕制服丝袜一区二区三区 | 黄色日韩三级电影| 国产欧美精品区一区二区三区| 成人av电影在线| 一区二区三区av电影| 欧美一卡二卡在线| 国产一区二区不卡在线| 自拍偷拍亚洲综合| 欧美影院午夜播放| 久久激情五月激情| 久久久综合视频| 色综合久久88色综合天天6| 日韩激情视频网站| 国产日本欧洲亚洲| 91久久线看在观草草青青 | 国产在线视频一区二区| 一区二区三区四区激情| 51精品视频一区二区三区| 国产精品性做久久久久久| 亚洲国产成人精品视频| 久久你懂得1024| 欧美亚洲尤物久久| 国产一区二区精品久久91| 视频一区免费在线观看| 国产精品亲子伦对白| 欧美人与z0zoxxxx视频| 日韩二区三区四区| 一区二区三区在线免费播放|