main.LST
上传用户:njxy551199
上传日期:2022-04-06
资源大小:1990k
文件大小:15k
源码类别:

RFID编程

开发平台:

C/C++

  1. C51 COMPILER V8.08   MAIN                                                                  03/14/2010 21:17:09 PAGE 1   
  2. C51 COMPILER V8.08, COMPILATION OF MODULE MAIN
  3. OBJECT MODULE PLACED IN main.OBJ
  4. COMPILER INVOKED BY: C:KeilC51BINC51.EXE main.c BROWSE DEBUG OBJECTEXTEND
  5. line level    source
  6.    1                                           #include "main.h"       
  7.    2          #include "hy502.h"
  8.    3          #include "lcd.h"
  9.    4          #include <stdio.h>
  10.    5          
  11.    6          
  12.    7          // SPI 总线状态定义
  13.    8          #define SPI_RDY  0xF0;            // 准备
  14.    9          #define spibusy  0xaa             // 忙
  15.   10          #define spiread  0xbb             // 读
  16.   11          #define spiwrite 0xcc             // 写
  17.   12          
  18.   13          
  19.   14          
  20.   15          /////////////////////////////////////////////////////////////////////////////////////////////////////
  21.   16          // 延时函数
  22.   17          void delay(unsigned int x)
  23.   18          {
  24.   19   1              while(x)
  25.   20   1              {
  26.   21   2                      x--;
  27.   22   2              }
  28.   23   1      }
  29.   24          
  30.   25           
  31.   26          
  32.   27          ///////////////////////////////////////////////////////////////////////
  33.   28          // Delay 1ms
  34.   29          ///////////////////////////////////////////////////////////////////////
  35.   30          void delay_1ms (uint _1ms)
  36.   31          {
  37.   32   1      
  38.   33   1        RCAP2LH = RCAP2_1ms;
  39.   34   1        T2LH    = RCAP2_1ms;
  40.   35   1        ET2 = 0;      // Disable timer2 interrupt
  41.   36   1        T2CON = 0x04; // 16-bit auto-reload, clear TF2, start timer
  42.   37   1      
  43.   38   1        while (_1ms--)
  44.   39   1        {
  45.   40   2              while (!TF2);
  46.   41   2              TF2 = FALSE;
  47.   42   2        }
  48.   43   1        TR2 = FALSE;
  49.   44   1      
  50.   45   1      }
  51.   46          
  52.   47          ///////////////////////////////////////////////////////////////////////
  53.   48          // Delay 10ms
  54.   49          ///////////////////////////////////////////////////////////////////////
  55.   50          void delay_10ms(unsigned int _10ms)
  56.   51          {
  57.   52   1        RCAP2LH = RCAP2_10ms;
  58.   53   1        T2LH    = RCAP2_10ms;
  59.   54   1        ET2 = 0;      // Disable timer2 interrupt
  60.   55   1        T2CON = 0x04; // 16-bit auto-reload, clear TF2, start timer
  61. C51 COMPILER V8.08   MAIN                                                                  03/14/2010 21:17:09 PAGE 2   
  62.   56   1      
  63.   57   1        while (_10ms--)
  64.   58   1        {
  65.   59   2              while (!TF2)
  66.   60   2              {
  67.   61   3               if(g_bReceCommandOk)            // change by lin 2006-08-21
  68.   62   3                {
  69.   63   4                      TR2 = FALSE;
  70.   64   4                      TF2 = FALSE;
  71.   65   4                      return;
  72.   66   4                 }
  73.   67   3              }
  74.   68   2              TF2 = FALSE;
  75.   69   2        }
  76.   70   1        TR2 = FALSE;
  77.   71   1      
  78.   72   1      }
  79.   73          
  80.   74           
  81.   75          /******************* SPI FUNCTION DEFINE ************************************/
  82.   76          /*****************************************************************************
  83.   77          *function: send a byte over SPI bus
  84.   78           发送一个字节
  85.   79          *****************************************************************************/
  86.   80          unsigned char SPIRWByte(unsigned char cSendByte)
  87.   81          {
  88.   82   1              unsigned char data i = 8;
  89.   83   1              unsigned char cRecByte;
  90.   84   1              while (i--)
  91.   85   1              {
  92.   86   2                      cRecByte += cRecByte;
  93.   87   2                      SCL = 0;
  94.   88   2                      MOSI = (bit)(cSendByte & 0x80);
  95.   89   2                      cSendByte += cSendByte;
  96.   90   2                      cRecByte |= (unsigned char) MISO ;
  97.   91   2                      SCL = 1;
  98.   92   2              }
  99.   93   1              SCL = 1;
  100.   94   1              return cRecByte;
  101.   95   1      }
  102.   96          
  103.   97          
  104.   98          /***** 查询SPI总线状态 *********/
  105.   99          unsigned char spi_cStatus(void)
  106.  100          {
  107.  101   1              unsigned char cStatus;
  108.  102   1              NSS=0;
  109.  103   1              cStatus=SPIRWByte(spibusy);
  110.  104   1      
  111.  105   1                 delay(50);
  112.  106   1              cStatus=SPIRWByte(0xFF);
  113.  107   1              NSS=1;
  114.  108   1      
  115.  109   1              return cStatus;
  116.  110   1      }
  117.  111          
  118.  112          /***** 读SPI总线数据********/
  119.  113          unsigned char SPI_Read(unsigned char *cP)
  120.  114          {
  121.  115   1              unsigned char cCnt,cStatus;
  122.  116   1              unsigned char cCheckSum = 0;
  123.  117   1      
  124. C51 COMPILER V8.08   MAIN                                                                  03/14/2010 21:17:09 PAGE 3   
  125.  118   1              for (cCnt=0; cCnt<100; cCnt++)
  126.  119   1              {
  127.  120   2                      cStatus=spi_cStatus(); //查询SPI总线状态
  128.  121   2                      if(cStatus==0xF0)
  129.  122   2                      {
  130.  123   3                              cCnt=253;
  131.  124   3                      }
  132.  125   2                      delay(50);
  133.  126   2                                               
  134.  127   2              }
  135.  128   1              
  136.  129   1      
  137.  130   1                
  138.  131   1              if(cCnt==254)  //卡操作结束,可以回传数据
  139.  132   1              {  
  140.  133   2                      NSS=0;
  141.  134   2              cCnt=SPIRWByte(spiread);
  142.  135   2                         
  143.  136   2      
  144.  137   2                  cP[0]=0x01;                            
  145.  138   2                 for (cCnt=0; cCnt<cP[0]; cCnt++)
  146.  139   2                 {
  147.  140   3                      cP[cCnt] = SPIRWByte(0xFF);
  148.  141   3                                      delay(10);
  149.  142   3                      cCheckSum ^= cP[cCnt];
  150.  143   3                    if(cP[0]>32)
  151.  144   3                      {
  152.  145   4                         NSS=1;
  153.  146   4                                         
  154.  147   4                         return  FAILURE;
  155.  148   4                      }       
  156.  149   3                 }
  157.  150   2                                              delay(10);
  158.  151   2                 cP[cCnt] = SPIRWByte(0xFF);
  159.  152   2                                      delay(10);
  160.  153   2                 NSS=1;
  161.  154   2                 if (cCheckSum == cP[cCnt])     
  162.  155   2                                {
  163.  156   3                                    
  164.  157   3                              
  165.  158   3                                      return SUCCESS;
  166.  159   3                                }
  167.  160   2                         
  168.  161   2                      
  169.  162   2                 else  return   FAILURE;
  170.  163   2             }
  171.  164   1                
  172.  165   1         else         
  173.  166   1              {
  174.  167   2                
  175.  168   2                      return FAILURE;
  176.  169   2              }
  177.  170   1         
  178.  171   1      }
  179.  172          
  180.  173          /***** 写SPI总线数据 *********/
  181.  174          unsigned char SPI_Write(unsigned char *cP)
  182.  175          {
  183.  176   1              unsigned char i,cStatus;
  184.  177   1              unsigned char cCheckSum = 0;
  185.  178   1      
  186.  179   1                      NSS=0;
  187. C51 COMPILER V8.08   MAIN                                                                  03/14/2010 21:17:09 PAGE 4   
  188.  180   1                      cStatus=SPIRWByte(spiwrite);
  189.  181   1      
  190.  182   1                      for(i=0; i<cP[0]; i++)  // cP[0] 表示数据包的长度
  191.  183   1                      {
  192.  184   2                              cCheckSum ^= cP[i];
  193.  185   2                              cStatus=SPIRWByte(cP[i]);
  194.  186   2                      }
  195.  187   1                      cStatus=SPIRWByte(cCheckSum);
  196.  188   1                      NSS=1;
  197.  189   1                                         
  198.  190   1      
  199.  191   1              return cStatus;
  200.  192   1      }
  201.  193          
  202.  194          
  203.  195          //-----Reset rf module -------//
  204.  196          void Reset_HY502(void)
  205.  197          {
  206.  198   1              RST_HY=0;                         //Reset HY502 复位模块 
  207.  199   1          delay_10ms(50);          
  208.  200   1              RST_HY=1;     
  209.  201   1      }
  210.  202             
  211.  203          /************************** main function start here *******************************/
  212.  204          void main()
  213.  205          {                       
  214.  206   1              
  215.  207   1              uchar str0[]={"money ="}         ;
  216.  208   1              
  217.  209   1              uchar idata str1[10];
  218.  210   1              uchar idata cStatus;                   
  219.  211   1              uchar *cPa;
  220.  212   1              int idata flag=0;
  221.  213   1      
  222.  214   1              float money=110.5;                              //      赋初值
  223.  215   1      
  224.  216   1              InitializeSystem();                // 初始化系统        
  225.  217   1              Reset_HY502();       
  226.  218   1              delay_1ms(500); 
  227.  219   1              lcd_init() ;
  228.  220   1                                              
  229.  221   1      
  230.  222   1                      
  231.  223   1                         while(sig)  ;
  232.  224   1                        
  233.  225   1               memcpy(&ComWriteBlock4[10],&money,4);
  234.  226   1      
  235.  227   1                cPa =ComWriteBlock4;
  236.  228   1                SPI_Write(cPa);
  237.  229   1                delay_1ms(500);                                                 
  238.  230   1              cStatus = SPI_Read(g_cReceBuf);
  239.  231   1                              while ((g_cReceBuf[1] != cPa[1]) || cStatus != SUCCESS)
  240.  232   1                       {
  241.  233   2                               cPa =ComWriteBlock4;
  242.  234   2                       SPI_Write(cPa);
  243.  235   2                       delay_1ms(100);
  244.  236   2                               cStatus = SPI_Read(g_cReceBuf);
  245.  237   2                       delay_1ms(100);        
  246.  238   2                               
  247.  239   2                       
  248.  240   2                       }
  249.  241   1                                         
  250. C51 COMPILER V8.08   MAIN                                                                  03/14/2010 21:17:09 PAGE 5   
  251.  242   1                               
  252.  243   1      
  253.  244   1              while (1)
  254.  245   1              {
  255.  246   2                      
  256.  247   2                        if (flag ==1) break;
  257.  248   2                         
  258.  249   2                while (sig);
  259.  250   2                          
  260.  251   2                        
  261.  252   2                        delay_1ms(70);           //预留卡靠近的时间
  262.  253   2                         
  263.  254   2                        while ( !sig) 
  264.  255   2                        {
  265.  256   3                              
  266.  257   3               cPa =ComReadBlock4;                            // 读取钱包         
  267.  258   3              SPI_Write(cPa);
  268.  259   3              delay_1ms(100);                                           
  269.  260   3              cStatus = SPI_Read(g_cReceBuf);
  270.  261   3               
  271.  262   3              if ((g_cReceBuf[1] != cPa[1]) || cStatus != SUCCESS)
  272.  263   3                       {
  273.  264   4                              cStatus  =  SPI_Write(ComHaltCard);
  274.  265   4                                      
  275.  266   4                                continue;
  276.  267   4                       
  277.  268   4                       }      
  278.  269   3      
  279.  270   3                 
  280.  271   3            memcpy(&money,&g_cReceBuf[2],4);
  281.  272   3                money = money - 1.5;
  282.  273   3              if (money <0)               //余额不够,重新初始化赋值
  283.  274   3                   {
  284.  275   4                          cStatus  =  SPI_Write(ComHaltCard);
  285.  276   4                                      flag = 1;
  286.  277   4                                 break;
  287.  278   4      
  288.  279   4                   }    
  289.  280   3      
  290.  281   3               memcpy(&ComWriteBlock4[10],&money,4); 
  291.  282   3          cPa =ComWriteBlock4;
  292.  283   3                SPI_Write(cPa);
  293.  284   3                delay_1ms(100);                                                 
  294.  285   3              cStatus = SPI_Read(g_cReceBuf);
  295.  286   3                while ((g_cReceBuf[1] != cPa[1]) || cStatus != SUCCESS)
  296.  287   3                       {
  297.  288   4                               cPa =ComWriteBlock4;
  298.  289   4                       SPI_Write(cPa);
  299.  290   4                       delay_1ms(100);
  300.  291   4                               cStatus = SPI_Read(g_cReceBuf);
  301.  292   4                       delay_1ms(100);        
  302.  293   4                               
  303.  294   4                       
  304.  295   4                       }       
  305.  296   3              
  306.  297   3                      
  307.  298   3           sprintf(str1,  "%0.1f", money);      
  308.  299   3              SPI_Write(ComHaltCard);    //设置为休眠状态
  309.  300   3              delay_1ms(100);            
  310.  301   3              lcd_display(str0,str1);
  311.  302   3              
  312.  303   3              delay_1ms(2000);
  313. C51 COMPILER V8.08   MAIN                                                                  03/14/2010 21:17:09 PAGE 6   
  314.  304   3              lcd_init() ;                      
  315.  305   3                                              
  316.  306   3                 }
  317.  307   2               }
  318.  308   1      
  319.  309   1               
  320.  310   1      
  321.  311   1       
  322.  312   1      
  323.  313   1      }                                                   
  324.  314          /*****************************************************************************
  325.  315          *system initialize
  326.  316          *UART baudrate = 19200bps, baud generator is T1
  327.  317          *****************************************************************************/
  328.  318          void InitializeSystem()
  329.  319          {
  330.  320   1        
  331.  321   1              ET2 = 0;
  332.  322   1              T2CON = 0x04;
  333.  323   1          PCON = 0x80;
  334.  324   1          SCON = 0x70;
  335.  325   1          TMOD = 0x21;        //TMOD = 0x22;
  336.  326   1      
  337.  327   1              TH1   = BAUD_19200;  //默认波特率
  338.  328   1              TL1   = TH1;
  339.  329   1              TR1   = TRUE;             // 波特率发生器
  340.  330   1      
  341.  331   1              ET1=0;
  342.  332   1              EA=1;
  343.  333   1              EX0=0;;
  344.  334   1              IT0 = 1;
  345.  335   1              TR2=0;
  346.  336   1              ES = TRUE;
  347.  337   1              g_bReceCommandOk=0;                                                             
  348.  338   1      
  349.  339   1      }
  350. MODULE INFORMATION:   STATIC OVERLAYABLE
  351.    CODE SIZE        =   1026    ----
  352.    CONSTANT SIZE    =     91    ----
  353.    XDATA SIZE       =   ----    ----
  354.    PDATA SIZE       =   ----    ----
  355.    DATA SIZE        =     47      34
  356.    IDATA SIZE       =     60      13
  357.    BIT SIZE         =      3    ----
  358. END OF MODULE INFORMATION.
  359. C51 COMPILATION COMPLETE.  0 WARNING(S),  0 ERROR(S)