driver_cc2500.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. low level driver for the TI CC2500 radio on SPI
  3. With thanks to betaflight
  4. */
  5. #pragma once
  6. #include <AP_HAL/AP_HAL.h>
  7. enum {
  8. CC2500_00_IOCFG2 = 0x00, // GDO2 output pin configuration
  9. CC2500_01_IOCFG1 = 0x01, // GDO1 output pin configuration
  10. CC2500_02_IOCFG0 = 0x02, // GDO0 output pin configuration
  11. CC2500_03_FIFOTHR = 0x03, // RX FIFO and TX FIFO thresholds
  12. CC2500_04_SYNC1 = 0x04, // Sync word, high byte
  13. CC2500_05_SYNC0 = 0x05, // Sync word, low byte
  14. CC2500_06_PKTLEN = 0x06, // Packet length
  15. CC2500_07_PKTCTRL1 = 0x07, // Packet automation control
  16. CC2500_08_PKTCTRL0 = 0x08, // Packet automation control
  17. CC2500_09_ADDR = 0x09, // Device address
  18. CC2500_0A_CHANNR = 0x0A, // Channel number
  19. CC2500_0B_FSCTRL1 = 0x0B, // Frequency synthesizer control
  20. CC2500_0C_FSCTRL0 = 0x0C, // Frequency synthesizer control
  21. CC2500_0D_FREQ2 = 0x0D, // Frequency control word, high byte
  22. CC2500_0E_FREQ1 = 0x0E, // Frequency control word, middle byte
  23. CC2500_0F_FREQ0 = 0x0F, // Frequency control word, low byte
  24. CC2500_10_MDMCFG4 = 0x10, // Modem configuration
  25. CC2500_11_MDMCFG3 = 0x11, // Modem configuration
  26. CC2500_12_MDMCFG2 = 0x12, // Modem configuration
  27. CC2500_13_MDMCFG1 = 0x13, // Modem configuration
  28. CC2500_14_MDMCFG0 = 0x14, // Modem configuration
  29. CC2500_15_DEVIATN = 0x15, // Modem deviation setting
  30. CC2500_16_MCSM2 = 0x16, // Main Radio Cntrl State Machine config
  31. CC2500_17_MCSM1 = 0x17, // Main Radio Cntrl State Machine config
  32. CC2500_18_MCSM0 = 0x18, // Main Radio Cntrl State Machine config
  33. CC2500_19_FOCCFG = 0x19, // Frequency Offset Compensation config
  34. CC2500_1A_BSCFG = 0x1A, // Bit Synchronization configuration
  35. CC2500_1B_AGCCTRL2 = 0x1B, // AGC control
  36. CC2500_1C_AGCCTRL1 = 0x1C, // AGC control
  37. CC2500_1D_AGCCTRL0 = 0x1D, // AGC control
  38. CC2500_1E_WOREVT1 = 0x1E, // High byte Event 0 timeout
  39. CC2500_1F_WOREVT0 = 0x1F, // Low byte Event 0 timeout
  40. CC2500_20_WORCTRL = 0x20, // Wake On Radio control
  41. CC2500_21_FREND1 = 0x21, // Front end RX configuration
  42. CC2500_22_FREND0 = 0x22, // Front end TX configuration
  43. CC2500_23_FSCAL3 = 0x23, // Frequency synthesizer calibration
  44. CC2500_24_FSCAL2 = 0x24, // Frequency synthesizer calibration
  45. CC2500_25_FSCAL1 = 0x25, // Frequency synthesizer calibration
  46. CC2500_26_FSCAL0 = 0x26, // Frequency synthesizer calibration
  47. CC2500_27_RCCTRL1 = 0x27, // RC oscillator configuration
  48. CC2500_28_RCCTRL0 = 0x28, // RC oscillator configuration
  49. CC2500_29_FSTEST = 0x29, // Frequency synthesizer cal control
  50. CC2500_2A_PTEST = 0x2A, // Production test
  51. CC2500_2B_AGCTEST = 0x2B, // AGC test
  52. CC2500_2C_TEST2 = 0x2C, // Various test settings
  53. CC2500_2D_TEST1 = 0x2D, // Various test settings
  54. CC2500_2E_TEST0 = 0x2E, // Various test settings
  55. // Status registers
  56. CC2500_30_PARTNUM = 0x30, // Part number
  57. CC2500_31_VERSION = 0x31, // Current version number
  58. CC2500_32_FREQEST = 0x32, // Frequency offset estimate
  59. CC2500_33_LQI = 0x33, // Demodulator estimate for link quality
  60. CC2500_34_RSSI = 0x34, // Received signal strength indication
  61. CC2500_35_MARCSTATE = 0x35, // Control state machine state
  62. CC2500_36_WORTIME1 = 0x36, // High byte of WOR timer
  63. CC2500_37_WORTIME0 = 0x37, // Low byte of WOR timer
  64. CC2500_38_PKTSTATUS = 0x38, // Current GDOx status and packet status
  65. CC2500_39_VCO_VC_DAC = 0x39, // Current setting from PLL cal module
  66. CC2500_3A_TXBYTES = 0x3A, // Underflow and # of bytes in TXFIFO
  67. CC2500_3B_RXBYTES = 0x3B, // Overflow and # of bytes in RXFIFO
  68. // Multi byte memory locations
  69. CC2500_3E_PATABLE = 0x3E,
  70. CC2500_3F_TXFIFO = 0x3F,
  71. CC2500_3F_RXFIFO = 0x3F
  72. };
  73. // Definitions for burst/single access to registers
  74. #define CC2500_WRITE_SINGLE 0x00
  75. #define CC2500_WRITE_BURST 0x40
  76. #define CC2500_READ_SINGLE 0x80
  77. #define CC2500_READ_BURST 0xC0
  78. // Strobe commands
  79. #define CC2500_SRES 0x30 // Reset chip.
  80. #define CC2500_SFSTXON \
  81. 0x31 // Enable and calibrate frequency synthesizer (if MCSM0.FS_AUTOCAL=1).
  82. // If in RX/TX: Go to a wait state where only the synthesizer is
  83. // running (for quick RX / TX turnaround).
  84. #define CC2500_SXOFF 0x32 // Turn off crystal oscillator.
  85. #define CC2500_SCAL 0x33 // Calibrate frequency synthesizer and turn it off
  86. // (enables quick start).
  87. #define CC2500_SRX \
  88. 0x34 // Enable RX. Perform calibration first if coming from IDLE and
  89. // MCSM0.FS_AUTOCAL=1.
  90. #define CC2500_STX \
  91. 0x35 // In IDLE state: Enable TX. Perform calibration first if
  92. // MCSM0.FS_AUTOCAL=1. If in RX state and CCA is enabled:
  93. // Only go to TX if channel is clear.
  94. #define CC2500_SIDLE \
  95. 0x36 // Exit RX / TX, turn off frequency synthesizer and exit
  96. // Wake-On-Radio mode if applicable.
  97. #define CC2500_SAFC 0x37 // Perform AFC adjustment of the frequency synthesizer
  98. #define CC2500_SWOR 0x38 // Start automatic RX polling sequence (Wake-on-Radio)
  99. #define CC2500_SPWD 0x39 // Enter power down mode when CSn goes high.
  100. #define CC2500_SFRX 0x3A // Flush the RX FIFO buffer.
  101. #define CC2500_SFTX 0x3B // Flush the TX FIFO buffer.
  102. #define CC2500_SWORRST 0x3C // Reset real time clock.
  103. #define CC2500_SNOP \
  104. 0x3D // No operation. May be used to pad strobe commands to two
  105. // bytes for simpler software.
  106. //----------------------------------------------------------------------------------
  107. // Chip Status Byte
  108. //----------------------------------------------------------------------------------
  109. // Bit fields in the chip status byte
  110. #define CC2500_STATUS_CHIP_RDYn_BM 0x80
  111. #define CC2500_STATUS_STATE_BM 0x70
  112. #define CC2500_STATUS_FIFO_BYTES_AVAILABLE_BM 0x0F
  113. // Chip states
  114. #define CC2500_STATE_IDLE 0x00
  115. #define CC2500_STATE_RX 0x10
  116. #define CC2500_STATE_TX 0x20
  117. #define CC2500_STATE_FSTXON 0x30
  118. #define CC2500_STATE_CALIBRATE 0x40
  119. #define CC2500_STATE_SETTLING 0x50
  120. #define CC2500_STATE_RX_OVERFLOW 0x60
  121. #define CC2500_STATE_TX_UNDERFLOW 0x70
  122. //----------------------------------------------------------------------------------
  123. // Other register bit fields
  124. //----------------------------------------------------------------------------------
  125. #define CC2500_LQI_CRC_OK_BM 0x80
  126. #define CC2500_LQI_EST_BM 0x7F
  127. // CC2500 driver class
  128. class Radio_CC2500
  129. {
  130. public:
  131. Radio_CC2500(AP_HAL::OwnPtr<AP_HAL::SPIDevice> _dev);
  132. void ReadFifo(uint8_t *dpbuffer, uint8_t len);
  133. void WriteFifo(const uint8_t *dpbuffer, uint8_t len);
  134. void ReadRegisterMulti(uint8_t address, uint8_t *data, uint8_t length);
  135. void WriteRegisterMulti(uint8_t address, const uint8_t *data, uint8_t length);
  136. uint8_t ReadReg(uint8_t reg);
  137. uint8_t Strobe(uint8_t address);
  138. void WriteReg(uint8_t address, uint8_t data);
  139. void WriteRegCheck(uint8_t address, uint8_t data);
  140. void SetPower(uint8_t power);
  141. bool Reset(void);
  142. bool lock_bus(void)
  143. {
  144. return dev && dev->get_semaphore()->take(HAL_SEMAPHORE_BLOCK_FOREVER);
  145. }
  146. void unlock_bus(void)
  147. {
  148. dev->get_semaphore()->give();
  149. }
  150. private:
  151. AP_HAL::OwnPtr<AP_HAL::SPIDevice> dev;
  152. uint8_t last_power;
  153. };