⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 1100.lst

📁 无线模块cc1101学习资料
💻 LST
📖 第 1 页 / 共 3 页
字号:
C51 COMPILER V7.06   1100                                                                  12/20/2007 00:50:10 PAGE 1   


C51 COMPILER V7.06, COMPILATION OF MODULE 1100
OBJECT MODULE PLACED IN 1100.OBJ
COMPILER INVOKED BY: C:\Keil\C51\BIN\C51.EXE 1100.c BROWSE DEBUG OBJECTEXTEND

stmt level    source

   1          #include <reg52.h>
   2          #include <intrins.h>
   3          #define         INT8U           unsigned char
   4          #define         INT16U          unsigned int
   5          
   6          #define         WRITE_BURST             0x40                                            //连续写入
   7          #define         READ_SINGLE             0x80                                            //读
   8          #define         READ_BURST              0xC0                                            //连续读
   9          #define         BYTES_IN_RXFIFO     0x7F                                                //接收缓冲区的有效字节数
  10          #define         CRC_OK              0x80                                                //CRC校验通过位标志
  11          //*****************************************************************************************
  12          sbit    GDO0    =P1^3;
  13          sbit    GDO2    =P3^2;
  14          sbit    MISO    =P1^6;
  15          sbit    MOSI    =P1^5;
  16          sbit    SCK             =P1^7;
  17          sbit    CSN             =P1^2;
  18          //*****************************************************************************************
  19          sbit    LED2    =P3^4;
  20          sbit    LED1    =P3^5;
  21          sbit    KEY1    =P3^6;
  22          sbit    KEY2    =P3^7;
  23          //*****************************************************************************************
  24          sbit    led3=P2^3;
  25          sbit    led2=P2^2;
  26          sbit    led1=P2^1;
  27          sbit    led0=P2^0;
  28          char temp[6];
  29          INT8U seg[10]={0xC0,0xCF,0xA4,0xB0,0x99,0x92,0x82,0xF8,0x80,0x90};         //0~~9段码
  30          INT8U seg1[10]={0x40,0x4F,0x24,0x30,0x19,0x12,0x02,0x78,0x00,0x10};
  31          INT8U data temp_data[2]={0x00,0x00};
  32          INT8U dispaly[8];
  33          //*****************************************************************************************
  34          INT8U PaTabel[8] = {0x60 ,0x60 ,0x60 ,0x60 ,0x60 ,0x60 ,0x60 ,0x60};
  35          //*****************************************************************************************
  36          void SpiInit(void);
  37          void CpuInit(void);
  38          void RESET_CC1100(void);
  39          void POWER_UP_RESET_CC1100(void);
  40          void halSpiWriteReg(INT8U addr, INT8U value);
  41          void halSpiWriteBurstReg(INT8U addr, INT8U *buffer, INT8U count);
  42          void halSpiStrobe(INT8U strobe);
  43          INT8U halSpiReadReg(INT8U addr);
  44          void halSpiReadBurstReg(INT8U addr, INT8U *buffer, INT8U count);
  45          INT8U halSpiReadStatus(INT8U addr);
  46          void halRfWriteRfSettings(void);
  47          void halRfSendPacket(INT8U *txBuffer, INT8U size); 
  48          INT8U halRfReceivePacket(INT8U *rxBuffer, INT8U *length);  
  49          void StartUART( void );
  50          void R_S_Byte(INT8U R_Byte);
  51          //*****************************************************************************************
  52          // CC1100 STROBE, CONTROL AND STATUS REGSITER
  53          #define CCxxx0_IOCFG2       0x00        // GDO2 output pin configuration
  54          #define CCxxx0_IOCFG1       0x01        // GDO1 output pin configuration
  55          #define CCxxx0_IOCFG0       0x02        // GDO0 output pin configuration
C51 COMPILER V7.06   1100                                                                  12/20/2007 00:50:10 PAGE 2   

  56          #define CCxxx0_FIFOTHR      0x03        // RX FIFO and TX FIFO thresholds
  57          #define CCxxx0_SYNC1        0x04        // Sync word, high INT8U
  58          #define CCxxx0_SYNC0        0x05        // Sync word, low INT8U
  59          #define CCxxx0_PKTLEN       0x06        // Packet length
  60          #define CCxxx0_PKTCTRL1     0x07        // Packet automation control
  61          #define CCxxx0_PKTCTRL0     0x08        // Packet automation control
  62          #define CCxxx0_ADDR         0x09        // Device address
  63          #define CCxxx0_CHANNR       0x0A        // Channel number
  64          #define CCxxx0_FSCTRL1      0x0B        // Frequency synthesizer control
  65          #define CCxxx0_FSCTRL0      0x0C        // Frequency synthesizer control
  66          #define CCxxx0_FREQ2        0x0D        // Frequency control word, high INT8U
  67          #define CCxxx0_FREQ1        0x0E        // Frequency control word, middle INT8U
  68          #define CCxxx0_FREQ0        0x0F        // Frequency control word, low INT8U
  69          #define CCxxx0_MDMCFG4      0x10        // Modem configuration
  70          #define CCxxx0_MDMCFG3      0x11        // Modem configuration
  71          #define CCxxx0_MDMCFG2      0x12        // Modem configuration
  72          #define CCxxx0_MDMCFG1      0x13        // Modem configuration
  73          #define CCxxx0_MDMCFG0      0x14        // Modem configuration
  74          #define CCxxx0_DEVIATN      0x15        // Modem deviation setting
  75          #define CCxxx0_MCSM2        0x16        // Main Radio Control State Machine configuration
  76          #define CCxxx0_MCSM1        0x17        // Main Radio Control State Machine configuration
  77          #define CCxxx0_MCSM0        0x18        // Main Radio Control State Machine configuration
  78          #define CCxxx0_FOCCFG       0x19        // Frequency Offset Compensation configuration
  79          #define CCxxx0_BSCFG        0x1A        // Bit Synchronization configuration
  80          #define CCxxx0_AGCCTRL2     0x1B        // AGC control
  81          #define CCxxx0_AGCCTRL1     0x1C        // AGC control
  82          #define CCxxx0_AGCCTRL0     0x1D        // AGC control
  83          #define CCxxx0_WOREVT1      0x1E        // High INT8U Event 0 timeout
  84          #define CCxxx0_WOREVT0      0x1F        // Low INT8U Event 0 timeout
  85          #define CCxxx0_WORCTRL      0x20        // Wake On Radio control
  86          #define CCxxx0_FREND1       0x21        // Front end RX configuration
  87          #define CCxxx0_FREND0       0x22        // Front end TX configuration
  88          #define CCxxx0_FSCAL3       0x23        // Frequency synthesizer calibration
  89          #define CCxxx0_FSCAL2       0x24        // Frequency synthesizer calibration
  90          #define CCxxx0_FSCAL1       0x25        // Frequency synthesizer calibration
  91          #define CCxxx0_FSCAL0       0x26        // Frequency synthesizer calibration
  92          #define CCxxx0_RCCTRL1      0x27        // RC oscillator configuration
  93          #define CCxxx0_RCCTRL0      0x28        // RC oscillator configuration
  94          #define CCxxx0_FSTEST       0x29        // Frequency synthesizer calibration control
  95          #define CCxxx0_PTEST        0x2A        // Production test
  96          #define CCxxx0_AGCTEST      0x2B        // AGC test
  97          #define CCxxx0_TEST2        0x2C        // Various test settings
  98          #define CCxxx0_TEST1        0x2D        // Various test settings
  99          #define CCxxx0_TEST0        0x2E        // Various test settings
 100          
 101          // Strobe commands
 102          #define CCxxx0_SRES         0x30        // Reset chip.
 103          #define CCxxx0_SFSTXON      0x31        // Enable and calibrate frequency synthesizer (if MCSM0.FS_AUTOCAL
             -=1).
 104                                                  // If in RX/TX: Go to a wait state where only the synthesizer is
 105                                                  // running (for quick RX / TX turnaround).
 106          #define CCxxx0_SXOFF        0x32        // Turn off crystal oscillator.
 107          #define CCxxx0_SCAL         0x33        // Calibrate frequency synthesizer and turn it off
 108                                                  // (enables quick start).
 109          #define CCxxx0_SRX          0x34        // Enable RX. Perform calibration first if coming from IDLE and
 110                                                  // MCSM0.FS_AUTOCAL=1.
 111          #define CCxxx0_STX          0x35        // In IDLE state: Enable TX. Perform calibration first if
 112                                                  // MCSM0.FS_AUTOCAL=1. If in RX state and CCA is enabled:
 113                                                  // Only go to TX if channel is clear.
 114          #define CCxxx0_SIDLE        0x36        // Exit RX / TX, turn off frequency synthesizer and exit
 115                                                  // Wake-On-Radio mode if applicable.
 116          #define CCxxx0_SAFC         0x37        // Perform AFC adjustment of the frequency synthesizer
C51 COMPILER V7.06   1100                                                                  12/20/2007 00:50:10 PAGE 3   

 117          #define CCxxx0_SWOR         0x38        // Start automatic RX polling sequence (Wake-on-Radio)
 118          #define CCxxx0_SPWD         0x39        // Enter power down mode when CSn goes high.
 119          #define CCxxx0_SFRX         0x3A        // Flush the RX FIFO buffer.
 120          #define CCxxx0_SFTX         0x3B        // Flush the TX FIFO buffer.
 121          #define CCxxx0_SWORRST      0x3C        // Reset real time clock.
 122          #define CCxxx0_SNOP         0x3D        // No operation. May be used to pad strobe commands to two
 123                                                  // INT8Us for simpler software.
 124          
 125          #define CCxxx0_PARTNUM      0x30
 126          #define CCxxx0_VERSION      0x31
 127          #define CCxxx0_FREQEST      0x32
 128          #define CCxxx0_LQI          0x33
 129          #define CCxxx0_RSSI         0x34
 130          #define CCxxx0_MARCSTATE    0x35
 131          #define CCxxx0_WORTIME1     0x36
 132          #define CCxxx0_WORTIME0     0x37
 133          #define CCxxx0_PKTSTATUS    0x38
 134          #define CCxxx0_VCO_VC_DAC   0x39
 135          #define CCxxx0_TXBYTES      0x3A
 136          #define CCxxx0_RXBYTES      0x3B
 137          
 138          #define CCxxx0_PATABLE      0x3E
 139          #define CCxxx0_TXFIFO       0x3F
 140          #define CCxxx0_RXFIFO       0x3F
 141          
 142          // RF_SETTINGS is a data structure which contains all relevant CCxxx0 registers
 143          typedef struct S_RF_SETTINGS
 144          {
 145                  INT8U FSCTRL2;          //自已加的
 146              INT8U FSCTRL1;   // Frequency synthesizer control.
 147              INT8U FSCTRL0;   // Frequency synthesizer control.
 148              INT8U FREQ2;     // Frequency control word, high INT8U.
 149              INT8U FREQ1;     // Frequency control word, middle INT8U.
 150              INT8U FREQ0;     // Frequency control word, low INT8U.
 151              INT8U MDMCFG4;   // Modem configuration.
 152              INT8U MDMCFG3;   // Modem configuration.
 153              INT8U MDMCFG2;   // Modem configuration.
 154              INT8U MDMCFG1;   // Modem configuration.
 155              INT8U MDMCFG0;   // Modem configuration.
 156              INT8U CHANNR;    // Channel number.
 157              INT8U DEVIATN;   // Modem deviation setting (when FSK modulation is enabled).
 158              INT8U FREND1;    // Front end RX configuration.
 159              INT8U FREND0;    // Front end RX configuration.
 160              INT8U MCSM0;     // Main Radio Control State Machine configuration.
 161              INT8U FOCCFG;    // Frequency Offset Compensation Configuration.
 162              INT8U BSCFG;     // Bit synchronization Configuration.
 163              INT8U AGCCTRL2;  // AGC control.
 164                  INT8U AGCCTRL1;  // AGC control.
 165              INT8U AGCCTRL0;  // AGC control.
 166              INT8U FSCAL3;    // Frequency synthesizer calibration.
 167              INT8U FSCAL2;    // Frequency synthesizer calibration.
 168                  INT8U FSCAL1;    // Frequency synthesizer calibration.
 169              INT8U FSCAL0;    // Frequency synthesizer calibration.
 170              INT8U FSTEST;    // Frequency synthesizer calibration control
 171              INT8U TEST2;     // Various test settings.
 172              INT8U TEST1;     // Various test settings.
 173              INT8U TEST0;     // Various test settings.
 174              INT8U IOCFG2;    // GDO2 output pin configuration
 175              INT8U IOCFG0;    // GDO0 output pin configuration
 176              INT8U PKTCTRL1;  // Packet automation control.
 177              INT8U PKTCTRL0;  // Packet automation control.
 178              INT8U ADDR;      // Device address.
C51 COMPILER V7.06   1100                                                                  12/20/2007 00:50:10 PAGE 4   

 179              INT8U PKTLEN;    // Packet length.
 180          } RF_SETTINGS;
 181          
 182          /////////////////////////////////////////////////////////////////
 183          const RF_SETTINGS rfSettings = 
 184          {
 185                  0x00,
 186              0x08,   // FSCTRL1   Frequency synthesizer control.
 187              0x00,   // FSCTRL0   Frequency synthesizer control.
 188              0x10,   // FREQ2     Frequency control word, high byte.
 189              0xA7,   // FREQ1     Frequency control word, middle byte.
 190              0x62,   // FREQ0     Frequency control word, low byte.
 191              0x5B,   // MDMCFG4   Modem configuration.
 192              0xF8,   // MDMCFG3   Modem configuration.
 193              0x03,   // MDMCFG2   Modem configuration.
 194              0x22,   // MDMCFG1   Modem configuration.
 195              0xF8,   // MDMCFG0   Modem configuration.
 196          
 197              0x00,   // CHANNR    Channel number.
 198              0x47,   // DEVIATN   Modem deviation setting (when FSK modulation is enabled).
 199              0xB6,   // FREND1    Front end RX configuration.
 200              0x10,   // FREND0    Front end RX configuration.
 201              0x18,   // MCSM0     Main Radio Control State Machine configuration.
 202              0x1D,   // FOCCFG    Frequency Offset Compensation Configuration.
 203              0x1C,   // BSCFG     Bit synchronization Configuration.
 204              0xC7,   // AGCCTRL2  AGC control.
 205              0x00,   // AGCCTRL1  AGC control.
 206              0xB2,   // AGCCTRL0  AGC control.
 207          
 208              0xEA,   // FSCAL3    Frequency synthesizer calibration.
 209              0x2A,   // FSCAL2    Frequency synthesizer calibration.
 210              0x00,   // FSCAL1    Frequency synthesizer calibration.
 211              0x11,   // FSCAL0    Frequency synthesizer calibration.
 212              0x59,   // FSTEST    Frequency synthesizer calibration.
 213              0x81,   // TEST2     Various test settings.
 214              0x35,   // TEST1     Various test settings.
 215              0x09,   // TEST0     Various test settings.
 216              0x0B,   // IOCFG2    GDO2 output pin configuration.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -