DW1000 UWB driver based on work of Matthias Grob & Manuel Stalder - ETH Zürich - 2015

Dependencies:   BurstSPI

Committer:
AndyA
Date:
Wed Apr 13 09:07:14 2016 +0000
Revision:
7:b13881dbb09d
Parent:
6:2c77afdf7367
Child:
8:0b408e77b701
Switched to Burst SPI and increased clock speed.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AndyA 0:bddb8cd5e7df 1 // by Matthias Grob & Manuel Stalder - ETH Zürich - 2015
AndyA 0:bddb8cd5e7df 2
AndyA 0:bddb8cd5e7df 3 #ifndef DW1000_H
AndyA 0:bddb8cd5e7df 4 #define DW1000_H
AndyA 0:bddb8cd5e7df 5
AndyA 0:bddb8cd5e7df 6 #include "mbed.h"
AndyA 7:b13881dbb09d 7 #include "BurstSPI.h"
AndyA 0:bddb8cd5e7df 8
AndyA 0:bddb8cd5e7df 9 // register addresses
AndyA 0:bddb8cd5e7df 10 // Mnemonic Address Bytes Description
AndyA 0:bddb8cd5e7df 11 #define DW1000_DEV_ID 0x00 // 4 Device Identifier – includes device type and revision information
AndyA 0:bddb8cd5e7df 12 #define DW1000_EUI 0x01 // 8 Extended Unique Identifier
AndyA 0:bddb8cd5e7df 13 #define DW1000_PANADR 0x03 // 4 PAN Identifier and Short Address
AndyA 0:bddb8cd5e7df 14 #define DW1000_SYS_CFG 0x04 // 4 System Configuration bitmap
AndyA 0:bddb8cd5e7df 15 #define DW1000_SYS_TIME 0x06 // 5 System Time Counter (40-bit)
AndyA 0:bddb8cd5e7df 16 #define DW1000_TX_FCTRL 0x08 // 5 Transmit Frame Control
AndyA 0:bddb8cd5e7df 17 #define DW1000_TX_BUFFER 0x09 // 1024 Transmit Data Buffer
AndyA 0:bddb8cd5e7df 18 #define DW1000_DX_TIME 0x0A // 5 Delayed Send or Receive Time (40-bit)
AndyA 0:bddb8cd5e7df 19 #define DW1000_RX_FWTO 0x0C // 2 Receive Frame Wait Timeout Period
AndyA 0:bddb8cd5e7df 20 #define DW1000_SYS_CTRL 0x0D // 4 System Control Register
AndyA 0:bddb8cd5e7df 21 #define DW1000_SYS_MASK 0x0E // 4 System Event Mask Register
AndyA 0:bddb8cd5e7df 22 #define DW1000_SYS_STATUS 0x0F // 5 System Event Status Register
AndyA 0:bddb8cd5e7df 23 #define DW1000_RX_FINFO 0x10 // 4 RX Frame Information (in double buffer set)
AndyA 0:bddb8cd5e7df 24 #define DW1000_RX_BUFFER 0x11 // 1024 Receive Data Buffer (in double buffer set)
AndyA 0:bddb8cd5e7df 25 #define DW1000_RX_FQUAL 0x12 // 8 Rx Frame Quality information (in double buffer set)
AndyA 0:bddb8cd5e7df 26 #define DW1000_RX_TTCKI 0x13 // 4 Receiver Time Tracking Interval (in double buffer set)
AndyA 0:bddb8cd5e7df 27 #define DW1000_RX_TTCKO 0x14 // 5 Receiver Time Tracking Offset (in double buffer set)
AndyA 0:bddb8cd5e7df 28 #define DW1000_RX_TIME 0x15 // 14 Receive Message Time of Arrival (in double buffer set)
AndyA 0:bddb8cd5e7df 29 #define DW1000_TX_TIME 0x17 // 10 Transmit Message Time of Sending (in double buffer set)
AndyA 0:bddb8cd5e7df 30 #define DW1000_TX_ANTD 0x18 // 2 16-bit Delay from Transmit to Antenna
AndyA 0:bddb8cd5e7df 31 #define DW1000_SYS_STATE 0x19 // 5 System State information
AndyA 0:bddb8cd5e7df 32 #define DW1000_ACK_RESP_T 0x1A // 4 Acknowledgement Time and Response Time
AndyA 0:bddb8cd5e7df 33 #define DW1000_RX_SNIFF 0x1D // 4 Pulsed Preamble Reception Configuration
AndyA 0:bddb8cd5e7df 34 #define DW1000_TX_POWER 0x1E // 4 TX Power Control
AndyA 0:bddb8cd5e7df 35 #define DW1000_CHAN_CTRL 0x1F // 4 Channel Control
AndyA 0:bddb8cd5e7df 36 #define DW1000_USR_SFD 0x21 // 41 User-specified short/long TX/RX SFD sequences
AndyA 0:bddb8cd5e7df 37 #define DW1000_AGC_CTRL 0x23 // 32 Automatic Gain Control configuration
AndyA 0:bddb8cd5e7df 38 #define DW1000_EXT_SYNC 0x24 // 12 External synchronisation control.
AndyA 0:bddb8cd5e7df 39 #define DW1000_ACC_MEM 0x25 // 4064 Read access to accumulator data
AndyA 0:bddb8cd5e7df 40 #define DW1000_GPIO_CTRL 0x26 // 44 Peripheral register bus 1 access - GPIO control
AndyA 0:bddb8cd5e7df 41 #define DW1000_DRX_CONF 0x27 // 44 Digital Receiver configuration
AndyA 0:bddb8cd5e7df 42 #define DW1000_RF_CONF 0x28 // 58 Analog RF Configuration
AndyA 0:bddb8cd5e7df 43 #define DW1000_TX_CAL 0x2A // 52 Transmitter calibration block
AndyA 0:bddb8cd5e7df 44 #define DW1000_FS_CTRL 0x2B // 21 Frequency synthesiser control block
AndyA 0:bddb8cd5e7df 45 #define DW1000_AON 0x2C // 12 Always-On register set
AndyA 0:bddb8cd5e7df 46 #define DW1000_OTP_IF 0x2D // 18 One Time Programmable Memory Interface
AndyA 0:bddb8cd5e7df 47 #define DW1000_LDE_CTRL 0x2E // - Leading edge detection control block
AndyA 0:bddb8cd5e7df 48 #define DW1000_DIG_DIAG 0x2F // 41 Digital Diagnostics Interface
AndyA 0:bddb8cd5e7df 49 #define DW1000_PMSC 0x36 // 48 Power Management System Control Block
AndyA 0:bddb8cd5e7df 50
AndyA 0:bddb8cd5e7df 51 // AGC_CTRL sub registers
AndyA 0:bddb8cd5e7df 52 #define DWAGCCTRL_AGC_CTRL1 0x02
AndyA 0:bddb8cd5e7df 53 #define DWAGCCTRL_AGC_TUNE1 0x04
AndyA 0:bddb8cd5e7df 54 #define DWAGCCTRL_AGC_TUNE2 0x0C
AndyA 0:bddb8cd5e7df 55 #define DWAGCCTRL_AGC_TUNE3 0x12
AndyA 0:bddb8cd5e7df 56
AndyA 0:bddb8cd5e7df 57 // EXT_SYNC sub registers
AndyA 0:bddb8cd5e7df 58 #define DWEXTSYNC_EC_CTRL 0x00
AndyA 0:bddb8cd5e7df 59 #define DWEXTSYNC_EC_RXTC 0x04
AndyA 0:bddb8cd5e7df 60 #define DWEXTSYNC_EC_GOLP 0x08
AndyA 0:bddb8cd5e7df 61
AndyA 0:bddb8cd5e7df 62 // GPIO sub registers
AndyA 0:bddb8cd5e7df 63 #define DWGPIO_GPIO_MODE 0x00
AndyA 0:bddb8cd5e7df 64 #define DWGPIO_GPIO_DIR 0x08
AndyA 0:bddb8cd5e7df 65 #define DWGPIO_GPIO_DOUT 0x0C
AndyA 0:bddb8cd5e7df 66 #define DWGPIO_GPIO_IRQE 0x10
AndyA 0:bddb8cd5e7df 67 #define DWGPIO_GPIO_ISEN 0x14
AndyA 0:bddb8cd5e7df 68 #define DWGPIO_GPIO_IMODE 0x18
AndyA 0:bddb8cd5e7df 69 #define DWGPIO_GPIO_IBES 0x1C
AndyA 0:bddb8cd5e7df 70 #define DWGPIO_GPIO_ICLR 0x20
AndyA 0:bddb8cd5e7df 71 #define DWGPIO_GPIO_IDBE 0x24
AndyA 0:bddb8cd5e7df 72 #define DWGPIO_GPIO_RAW 0x28
AndyA 0:bddb8cd5e7df 73
AndyA 0:bddb8cd5e7df 74 // DRX sub registers
AndyA 0:bddb8cd5e7df 75 #define DWDRX_DRX_TUNE0B 0x02
AndyA 0:bddb8cd5e7df 76 #define DWDRX_DRX_TUNE1A 0x04
AndyA 0:bddb8cd5e7df 77 #define DWDRX_DRX_TUNE1B 0x06
AndyA 0:bddb8cd5e7df 78 #define DWDRX_DRX_TUNE2 0x08
AndyA 0:bddb8cd5e7df 79 #define DWDRX_DRX_SFDTOC 0x20
AndyA 0:bddb8cd5e7df 80 #define DWDRX_DRX_PRETOC 0x24
AndyA 0:bddb8cd5e7df 81 #define DWDRX_DRX_TUNE4H 0x26
AndyA 0:bddb8cd5e7df 82
AndyA 0:bddb8cd5e7df 83 //RF conf sub registers
AndyA 0:bddb8cd5e7df 84 #define DWRFCONF_RF_CONF 0x00
AndyA 0:bddb8cd5e7df 85 #define DWRFCONF_RF_RXCTRLH 0x0B
AndyA 0:bddb8cd5e7df 86 #define DWRFCONF_RF_TXCTRL 0x0C
AndyA 0:bddb8cd5e7df 87 #define DWRFCONF_RF_STATUS 0x2C
AndyA 0:bddb8cd5e7df 88 #define DWRFCONF_RF_LDOTUNE 0x30
AndyA 0:bddb8cd5e7df 89
AndyA 0:bddb8cd5e7df 90 // TX cal sub registers
AndyA 0:bddb8cd5e7df 91 #define DWTXCAL_TC_SARC 0x00
AndyA 0:bddb8cd5e7df 92 #define DWTXCAL_TC_SARL 0x03
AndyA 0:bddb8cd5e7df 93 #define DWTXCAL_TC_SARW 0x06
AndyA 0:bddb8cd5e7df 94 #define DWTXCAL_TC_PGDELAY 0x0B
AndyA 0:bddb8cd5e7df 95 #define DWTXCAL_TC_PGTEST 0x0C
AndyA 0:bddb8cd5e7df 96
AndyA 0:bddb8cd5e7df 97 // Freq synth sub registers
AndyA 0:bddb8cd5e7df 98 #define DWFSCTRL_FS_PLLCFG 0x07
AndyA 0:bddb8cd5e7df 99 #define DWFSCTRL_FS_PLLTUNE 0x0B
AndyA 0:bddb8cd5e7df 100 #define DWFSCTRL_FS_XTALT 0x0E
AndyA 0:bddb8cd5e7df 101
AndyA 0:bddb8cd5e7df 102 // Always on sub registers
AndyA 0:bddb8cd5e7df 103 #define DWAON_AON_WCFG 0x00
AndyA 0:bddb8cd5e7df 104 #define DWAON_AON_CTRL 0x02
AndyA 0:bddb8cd5e7df 105 #define DWAON_AON_RDAT 0x03
AndyA 0:bddb8cd5e7df 106 #define DWAON_AON_ADDR 0x04
AndyA 0:bddb8cd5e7df 107 #define DWAON_AON_CFG0 0x06
AndyA 0:bddb8cd5e7df 108 #define DWAON_AON_CFG1 0x0A
AndyA 0:bddb8cd5e7df 109
AndyA 0:bddb8cd5e7df 110 // OTP sub registers
AndyA 0:bddb8cd5e7df 111 #define DWOTP_OTP_WDAT 0x00
AndyA 0:bddb8cd5e7df 112 #define DWOTP_OTP_ADDR 0x04
AndyA 0:bddb8cd5e7df 113 #define DWOTP_OTP_CTRL 0x06
AndyA 0:bddb8cd5e7df 114 #define DWOTP_OTP_STAT 0x08
AndyA 0:bddb8cd5e7df 115 #define DWOTP_OTP_RDAT 0x0A
AndyA 0:bddb8cd5e7df 116 #define DWOTP_OTP_SRDAT 0x0E
AndyA 0:bddb8cd5e7df 117 #define DWOTP_OTP_SF 0x12
AndyA 0:bddb8cd5e7df 118
AndyA 0:bddb8cd5e7df 119 //LDE_IF sub registers
AndyA 0:bddb8cd5e7df 120 #define DWLDE_LDE_THRESH 0x0000
AndyA 0:bddb8cd5e7df 121 #define DWLDE_LDE_CFG1 0x0806
AndyA 0:bddb8cd5e7df 122 #define DWLDE_LDE_PPINDX 0x1000
AndyA 0:bddb8cd5e7df 123 #define DWLDE_LDE_PPAMPL 0x1002
AndyA 0:bddb8cd5e7df 124 #define DWLDE_LDE_RXANTD 0x1804
AndyA 0:bddb8cd5e7df 125 #define DWLDE_LDE_CFG2 0x1806
AndyA 0:bddb8cd5e7df 126 #define DWLDE_LDE_REPC 0x2804
AndyA 0:bddb8cd5e7df 127
AndyA 0:bddb8cd5e7df 128 // Dig Diag sub registers
AndyA 0:bddb8cd5e7df 129 #define DWDIAG_EVC_CTRL 0x00
AndyA 0:bddb8cd5e7df 130 #define DWDIAG_EVC_PHE 0x04
AndyA 0:bddb8cd5e7df 131 #define DWDIAG_EVC_RSE 0x06
AndyA 0:bddb8cd5e7df 132 #define DWDIAG_EVC_FCG 0x08
AndyA 0:bddb8cd5e7df 133 #define DWDIAG_EVC_FCE 0x0A
AndyA 0:bddb8cd5e7df 134 #define DWDIAG_EVC_FFR 0x0C
AndyA 0:bddb8cd5e7df 135 #define DWDIAG_EVC_OVR 0x0E
AndyA 0:bddb8cd5e7df 136 #define DWDIAG_EVC_STO 0x10
AndyA 0:bddb8cd5e7df 137 #define DWDIAG_EVC_PTO 0x12
AndyA 0:bddb8cd5e7df 138 #define DWDIAG_EVC_FWTO 0x14
AndyA 0:bddb8cd5e7df 139 #define DWDIAG_EVC_TXFS 0x16
AndyA 0:bddb8cd5e7df 140 #define DWDIAG_EVC_HPW 0x18
AndyA 0:bddb8cd5e7df 141 #define DWDIAG_EVC_TPW 0x1A
AndyA 0:bddb8cd5e7df 142 #define DWDIAG_DIAG_TMC 0x24
AndyA 0:bddb8cd5e7df 143
AndyA 0:bddb8cd5e7df 144 // power control sub registers
AndyA 0:bddb8cd5e7df 145 #define DWPMSC_PMSC_CTRL0 0x00
AndyA 0:bddb8cd5e7df 146 #define DWPMSC_PMSC_CTRL1 0x04
AndyA 0:bddb8cd5e7df 147 #define DWPMSC_PMSC_SNOZT 0x0C
AndyA 0:bddb8cd5e7df 148 #define DWPMSC_PMSC_TXFSEQ 0x26
AndyA 0:bddb8cd5e7df 149 #define DWPMSC_PMSC_LEDC 0x28
AndyA 0:bddb8cd5e7df 150
AndyA 0:bddb8cd5e7df 151
AndyA 0:bddb8cd5e7df 152 #define DW1000_WRITE_FLAG 0x80 // First Bit of the address has to be 1 to indicate we want to write
AndyA 0:bddb8cd5e7df 153 #define DW1000_SUBADDRESS_FLAG 0x40 // if we have a sub address second Bit has to be 1
AndyA 0:bddb8cd5e7df 154 #define DW1000_2_SUBADDRESS_FLAG 0x80 // if we have a long sub adress (more than 7 Bit) we set this Bit in the first part
AndyA 0:bddb8cd5e7df 155
AndyA 3:1459d2aa6b97 156 /*
AndyA 3:1459d2aa6b97 157 From user manual 10.5
AndyA 3:1459d2aa6b97 158 Table 59:
AndyA 3:1459d2aa6b97 159 DW1000 supported UWB channels and recommended preamble codes
AndyA 3:1459d2aa6b97 160
AndyA 3:1459d2aa6b97 161 channel 16MHzPrf 64MHzPrf
AndyA 3:1459d2aa6b97 162 1 1,2 9, 10, 11, 12
AndyA 3:1459d2aa6b97 163 2 3, 4 9, 10, 11, 12
AndyA 3:1459d2aa6b97 164 3 5, 6 9, 10, 11, 12
AndyA 3:1459d2aa6b97 165 4 7, 8 17, 18, 19, 20
AndyA 3:1459d2aa6b97 166 5 3, 4 9, 10, 11, 12
AndyA 3:1459d2aa6b97 167 7 7, 8 17, 18, 19, 20
AndyA 3:1459d2aa6b97 168 */
AndyA 3:1459d2aa6b97 169
AndyA 3:1459d2aa6b97 170
AndyA 4:5f1025df5530 171 /** Class for holding DW1000 config options
AndyA 4:5f1025df5530 172 *
AndyA 4:5f1025df5530 173 */
AndyA 4:5f1025df5530 174 class DW1000Setup
AndyA 4:5f1025df5530 175 {
AndyA 4:5f1025df5530 176 public:
AndyA 4:5f1025df5530 177
AndyA 4:5f1025df5530 178 /// Constructor - default settings are close to hardware defaults.
AndyA 4:5f1025df5530 179 DW1000Setup() {
AndyA 4:5f1025df5530 180 channel = 5;
AndyA 4:5f1025df5530 181 prf =prf16MHz;
AndyA 4:5f1025df5530 182 dataRate = kbps850;
AndyA 4:5f1025df5530 183 sfd = standard;
AndyA 4:5f1025df5530 184 preamble = pre128;
AndyA 4:5f1025df5530 185 preambleCode = 3;
AndyA 4:5f1025df5530 186 enableSmartPower = true;
AndyA 4:5f1025df5530 187 }
AndyA 4:5f1025df5530 188
AndyA 4:5f1025df5530 189 /// enum for PRF options
AndyA 6:2c77afdf7367 190 enum prf_e {prf16MHz, ///< PRF rate of 16MHz. Lower power
AndyA 6:2c77afdf7367 191 prf64MHz ///< PRF rate of 64MHz. Higher power but more accurate timing.
AndyA 6:2c77afdf7367 192 };
AndyA 6:2c77afdf7367 193
AndyA 6:2c77afdf7367 194 /// enum for data rate options
AndyA 6:2c77afdf7367 195 enum dataRate_e {kbps110, ///< Data rate of 110kb/s (non-standard)
AndyA 6:2c77afdf7367 196 kbps850,///< Data rate of 850kb/s
AndyA 6:2c77afdf7367 197 kbps6800///< Data rate of 6.8Mb/s
AndyA 6:2c77afdf7367 198 };
AndyA 4:5f1025df5530 199
AndyA 6:2c77afdf7367 200 /// enum for SFD options
AndyA 6:2c77afdf7367 201 enum sfd_e {standard, ///< IEEE standard SFD
AndyA 6:2c77afdf7367 202 decaWave, ///< Decawave defined SFD
AndyA 6:2c77afdf7367 203 user ///< user defined SFD
AndyA 6:2c77afdf7367 204 };
AndyA 4:5f1025df5530 205
AndyA 6:2c77afdf7367 206 /// enum for preamble length options
AndyA 6:2c77afdf7367 207 enum preamble_e { pre64,///< Preamble is 64 symbols
AndyA 6:2c77afdf7367 208 pre128,///< Preamble is 128 symbols (non-standard)
AndyA 6:2c77afdf7367 209 pre256,///< Preamble is 256 symbols (non-standard)
AndyA 6:2c77afdf7367 210 pre512,///< Preamble is 512 symbols (non-standard)
AndyA 6:2c77afdf7367 211 pre1024,///< Preamble is 1024 symbols
AndyA 6:2c77afdf7367 212 pre1536,///< Preamble is 1536 symbols (non-standard)
AndyA 6:2c77afdf7367 213 pre2048, ///< Preamble is 2048 symbols (non-standard)
AndyA 6:2c77afdf7367 214 pre4096///< Preamble is 4096 symbols
AndyA 6:2c77afdf7367 215 };
AndyA 6:2c77afdf7367 216
AndyA 6:2c77afdf7367 217 /** Set the PRF
AndyA 6:2c77afdf7367 218 * @return true if a valid option
AndyA 6:2c77afdf7367 219 */
AndyA 4:5f1025df5530 220 bool setPRF(enum prf_e newSetting) {
AndyA 4:5f1025df5530 221 prf = newSetting;
AndyA 4:5f1025df5530 222 return true;
AndyA 4:5f1025df5530 223 };
AndyA 0:bddb8cd5e7df 224
AndyA 6:2c77afdf7367 225 /** Set the Channel
AndyA 6:2c77afdf7367 226 * @return true if a valid option
AndyA 6:2c77afdf7367 227 */
AndyA 4:5f1025df5530 228 bool setChannel(unsigned char newChannel) {
AndyA 4:5f1025df5530 229 if ((channel > 0) && ((channel <= 5) || (channel == 7))) {
AndyA 4:5f1025df5530 230 channel = newChannel;
AndyA 4:5f1025df5530 231 return true;
AndyA 4:5f1025df5530 232 }
AndyA 4:5f1025df5530 233 return false;
AndyA 4:5f1025df5530 234 };
AndyA 6:2c77afdf7367 235 /** Set the SFD
AndyA 6:2c77afdf7367 236 * @return true if a valid option
AndyA 6:2c77afdf7367 237 */
AndyA 4:5f1025df5530 238 bool setSfd(enum sfd_e newSetting) {
AndyA 4:5f1025df5530 239 sfd = newSetting;
AndyA 4:5f1025df5530 240 return true;
AndyA 4:5f1025df5530 241 };
AndyA 6:2c77afdf7367 242 /** Set the Preamble length
AndyA 6:2c77afdf7367 243 * @return true if a valid option
AndyA 6:2c77afdf7367 244 */
AndyA 4:5f1025df5530 245 bool setPreambleLength(enum preamble_e newSetting) {
AndyA 4:5f1025df5530 246 preamble = newSetting;
AndyA 4:5f1025df5530 247 return true;
AndyA 4:5f1025df5530 248 };
AndyA 6:2c77afdf7367 249 /** Set the Data rate
AndyA 6:2c77afdf7367 250 * @return true if a valid option
AndyA 6:2c77afdf7367 251 */
AndyA 4:5f1025df5530 252 bool setDataRate(enum dataRate_e newSetting) {
AndyA 4:5f1025df5530 253 dataRate = newSetting;
AndyA 4:5f1025df5530 254 return true;
AndyA 4:5f1025df5530 255 };
AndyA 6:2c77afdf7367 256 /** Set the Preamble code
AndyA 6:2c77afdf7367 257 * @return true if a valid option
AndyA 6:2c77afdf7367 258 *
AndyA 6:2c77afdf7367 259 * note - not all codes are valid for all channels. Set the channel first.
AndyA 6:2c77afdf7367 260 * TODO - enforce code restrictions
AndyA 6:2c77afdf7367 261 */
AndyA 4:5f1025df5530 262 bool setPreambleCode(unsigned char newCode) {
AndyA 4:5f1025df5530 263 if ((newCode > 0) && (newCode <= 24)) {
AndyA 4:5f1025df5530 264 preambleCode = newCode;
AndyA 4:5f1025df5530 265 return true;
AndyA 4:5f1025df5530 266 }
AndyA 4:5f1025df5530 267 return false;
AndyA 4:5f1025df5530 268 };
AndyA 6:2c77afdf7367 269 /** Set the smartpower state
AndyA 6:2c77afdf7367 270 * @return true if a valid option
AndyA 6:2c77afdf7367 271 *
AndyA 6:2c77afdf7367 272 * only takes effect at 6.8Mb/s
AndyA 6:2c77afdf7367 273 */
AndyA 4:5f1025df5530 274 bool setSmartPower(bool enable) {
AndyA 4:5f1025df5530 275 enableSmartPower = enable;
AndyA 4:5f1025df5530 276 return true;
AndyA 4:5f1025df5530 277 };
AndyA 4:5f1025df5530 278
AndyA 6:2c77afdf7367 279 /** Get the current channel
AndyA 6:2c77afdf7367 280 * @return the channel number
AndyA 6:2c77afdf7367 281 */
AndyA 4:5f1025df5530 282 unsigned char getChannel() {
AndyA 4:5f1025df5530 283 return channel;
AndyA 4:5f1025df5530 284 };
AndyA 6:2c77afdf7367 285 /** Get the current PRF
AndyA 6:2c77afdf7367 286 * @return the PRF
AndyA 6:2c77afdf7367 287 */
AndyA 4:5f1025df5530 288 enum prf_e getPRF() {
AndyA 4:5f1025df5530 289 return prf;
AndyA 4:5f1025df5530 290 };
AndyA 6:2c77afdf7367 291 /** Get the current data rate
AndyA 6:2c77afdf7367 292 * @return the data rate
AndyA 6:2c77afdf7367 293 */ enum dataRate_e getDataRate() {
AndyA 4:5f1025df5530 294 return dataRate;
AndyA 4:5f1025df5530 295 };
AndyA 6:2c77afdf7367 296
AndyA 6:2c77afdf7367 297 /** Get the current SFD mode
AndyA 6:2c77afdf7367 298 * @return the SFD
AndyA 6:2c77afdf7367 299 */ enum sfd_e getSfd() {
AndyA 6:2c77afdf7367 300 return sfd;
AndyA 6:2c77afdf7367 301 };
AndyA 6:2c77afdf7367 302 /** Get the current preamble length
AndyA 6:2c77afdf7367 303 * @return the preamble length
AndyA 6:2c77afdf7367 304 */
AndyA 6:2c77afdf7367 305 enum preamble_e getPreambleLength() {
AndyA 4:5f1025df5530 306 return preamble;
AndyA 4:5f1025df5530 307 };
AndyA 6:2c77afdf7367 308 /** Get the current preamble code
AndyA 6:2c77afdf7367 309 * @return the preamble code
AndyA 6:2c77afdf7367 310 */
AndyA 4:5f1025df5530 311 unsigned char getPreambleCode() {
AndyA 4:5f1025df5530 312 return preambleCode;
AndyA 4:5f1025df5530 313 };
AndyA 6:2c77afdf7367 314 /** Get the current smart power mode
AndyA 6:2c77afdf7367 315 * @return true if smartpower is on
AndyA 6:2c77afdf7367 316 */
AndyA 4:5f1025df5530 317 bool getSmartPower() {
AndyA 4:5f1025df5530 318 return enableSmartPower;
AndyA 4:5f1025df5530 319 };
AndyA 4:5f1025df5530 320
AndyA 4:5f1025df5530 321 private:
AndyA 4:5f1025df5530 322 unsigned char channel; // 1-5 , 7
AndyA 4:5f1025df5530 323 enum prf_e prf;
AndyA 4:5f1025df5530 324 enum dataRate_e dataRate;
AndyA 4:5f1025df5530 325 enum sfd_e sfd;
AndyA 4:5f1025df5530 326 enum preamble_e preamble;
AndyA 4:5f1025df5530 327 unsigned char preambleCode; // 1-24. See section 10.5 of user manual for details.
AndyA 4:5f1025df5530 328 bool enableSmartPower;
AndyA 4:5f1025df5530 329 };
AndyA 4:5f1025df5530 330
AndyA 4:5f1025df5530 331
AndyA 3:1459d2aa6b97 332 typedef enum {minPacketSize, tunedDefault, user110k} UWBMode;
AndyA 0:bddb8cd5e7df 333
AndyA 4:5f1025df5530 334 /** A DW1000 driver
AndyA 4:5f1025df5530 335 */
AndyA 0:bddb8cd5e7df 336 class DW1000
AndyA 0:bddb8cd5e7df 337 {
AndyA 0:bddb8cd5e7df 338 public:
AndyA 0:bddb8cd5e7df 339
AndyA 6:2c77afdf7367 340 /** Constructor.
AndyA 6:2c77afdf7367 341 *
AndyA 6:2c77afdf7367 342 * @param setup The radio mode to configure the unit to use.
AndyA 6:2c77afdf7367 343 *
AndyA 6:2c77afdf7367 344 * Valid setup values are defaultConfig, tunedDefault, user110k
AndyA 6:2c77afdf7367 345 */
AndyA 0:bddb8cd5e7df 346 DW1000(UWBMode setup, PinName MOSI, PinName MISO, PinName SCLK, PinName CS, PinName IRQ); // constructor, uses SPI class
AndyA 6:2c77afdf7367 347
AndyA 6:2c77afdf7367 348 /**
AndyA 6:2c77afdf7367 349 * Sets the callbacks on packet Rx and Tx
AndyA 6:2c77afdf7367 350 * @param callbackRX The function to call on packet Rx complete
AndyA 6:2c77afdf7367 351 * @param callbackTX The function to call on packet Tx complete
AndyA 6:2c77afdf7367 352 *
AndyA 6:2c77afdf7367 353 * set either or both to null to disable the appropriate interupt
AndyA 6:2c77afdf7367 354 */
AndyA 0:bddb8cd5e7df 355 void setCallbacks(void (*callbackRX)(void), void (*callbackTX)(void)); // setter for callback functions, automatically enables interrupt, if NULL is passed the coresponding interrupt gets disabled
AndyA 6:2c77afdf7367 356
AndyA 6:2c77afdf7367 357 /**
AndyA 6:2c77afdf7367 358 * c++ version of setCallbacks()
AndyA 6:2c77afdf7367 359 * @param tptr object for callbacks
AndyA 6:2c77afdf7367 360 * @param mptrRX method to call on packet Rx complete
AndyA 6:2c77afdf7367 361 * @param mptrTX method to call on packet Tx complete
AndyA 6:2c77afdf7367 362 *
AndyA 6:2c77afdf7367 363 */
AndyA 0:bddb8cd5e7df 364 template<typename T>
AndyA 0:bddb8cd5e7df 365 void setCallbacks(T* tptr, void (T::*mptrRX)(void), void (T::*mptrTX)(void)) { // overloaded setter to treat member function pointers of objects
AndyA 0:bddb8cd5e7df 366 callbackRX.attach(tptr, mptrRX); // possible client code: dw.setCallbacks(this, &A::callbackRX, &A::callbackTX);
AndyA 0:bddb8cd5e7df 367 callbackTX.attach(tptr, mptrTX); // concept seen in line 100 of http://developer.mbed.org/users/mbed_official/code/mbed/docs/4fc01daae5a5/InterruptIn_8h_source.html
AndyA 0:bddb8cd5e7df 368 setInterrupt(true,true);
AndyA 0:bddb8cd5e7df 369 }
AndyA 0:bddb8cd5e7df 370
AndyA 0:bddb8cd5e7df 371 // Device API
AndyA 6:2c77afdf7367 372 /** Read the device ID
AndyA 6:2c77afdf7367 373 * @return the device ID (0xDECA0130)
AndyA 6:2c77afdf7367 374 */
AndyA 0:bddb8cd5e7df 375 uint32_t getDeviceID(); // gets the Device ID which should be 0xDECA0130 (good for testing SPI!)
AndyA 6:2c77afdf7367 376
AndyA 6:2c77afdf7367 377 /** Read the Extended Unique ID
AndyA 6:2c77afdf7367 378 * @return The device EUI as stored in the system registers
AndyA 6:2c77afdf7367 379 */
AndyA 6:2c77afdf7367 380 uint64_t getEUI();
AndyA 6:2c77afdf7367 381
AndyA 6:2c77afdf7367 382 /** Set the Extended Unique ID
AndyA 6:2c77afdf7367 383 * @param EUI The EUID to use
AndyA 6:2c77afdf7367 384 *
AndyA 6:2c77afdf7367 385 * Note - ID is only valid until the next power cycle and overrides the value in the OTP memory.
AndyA 6:2c77afdf7367 386 * To set a value that is automatically loaded on startup set OTP memory addresses 0 and 1.
AndyA 6:2c77afdf7367 387 */
AndyA 0:bddb8cd5e7df 388 void setEUI(uint64_t EUI); // sets 64 bit Extended Unique Identifier according to IEEE standard
AndyA 6:2c77afdf7367 389
AndyA 6:2c77afdf7367 390 /** Read voltage input
AndyA 6:2c77afdf7367 391
AndyA 6:2c77afdf7367 392 @return the current device voltage
AndyA 6:2c77afdf7367 393
AndyA 6:2c77afdf7367 394 For accurate ranging the voltage of the device should be taken into account.
AndyA 6:2c77afdf7367 395 User manual give variation as ~5.35cm / V
AndyA 6:2c77afdf7367 396 */
AndyA 0:bddb8cd5e7df 397 float getVoltage(); // gets the current chip voltage measurement form the A/D converter
AndyA 6:2c77afdf7367 398
AndyA 6:2c77afdf7367 399 /** Read on board temperature sensor
AndyA 6:2c77afdf7367 400 @return The temperature in C
AndyA 6:2c77afdf7367 401
AndyA 6:2c77afdf7367 402 For accurate ranging the temperature of the device should be taken into account.
AndyA 6:2c77afdf7367 403 User manual give variation as ~2.15mm / C
AndyA 6:2c77afdf7367 404 */
AndyA 0:bddb8cd5e7df 405 float getTemperature(); // gets the current chip temperature measurement form the A/D converter
AndyA 6:2c77afdf7367 406
AndyA 6:2c77afdf7367 407 /** Get the status register
AndyA 6:2c77afdf7367 408 * @return The system status register
AndyA 6:2c77afdf7367 409 *
AndyA 6:2c77afdf7367 410 * See user manual section 7.2.17 for details
AndyA 6:2c77afdf7367 411 */
AndyA 0:bddb8cd5e7df 412 uint64_t getStatus(); // get the 40 bit device status
AndyA 6:2c77afdf7367 413
AndyA 6:2c77afdf7367 414 /** Get the last packet recieve time
AndyA 6:2c77afdf7367 415 * @return the internal time stamp for the last packet Rx
AndyA 6:2c77afdf7367 416 *
AndyA 6:2c77afdf7367 417 * Time is counted on a clock running at 499.2MHz * 128 (~15.65ps)
AndyA 6:2c77afdf7367 418 * This value is raw time minus user set Rx antenna delay.
AndyA 6:2c77afdf7367 419 */
AndyA 0:bddb8cd5e7df 420 uint64_t getRXTimestamp();
AndyA 6:2c77afdf7367 421
AndyA 6:2c77afdf7367 422 /** Get the last packet transmit time
AndyA 6:2c77afdf7367 423 * @return the internal time stamp for the last packet Tx
AndyA 6:2c77afdf7367 424 *
AndyA 6:2c77afdf7367 425 * Time is counted on a clock running at 499.2MHz * 128 (~15.65ps)
AndyA 6:2c77afdf7367 426 * This value is raw time plus user set Tx antenna delay to give time at the antenna.
AndyA 6:2c77afdf7367 427 */
AndyA 0:bddb8cd5e7df 428 uint64_t getTXTimestamp();
AndyA 0:bddb8cd5e7df 429
AndyA 6:2c77afdf7367 430 /** Send a packet
AndyA 6:2c77afdf7367 431 * @param message A buffer containing the data to send
AndyA 6:2c77afdf7367 432 * @param length The length of the data in bytes.
AndyA 6:2c77afdf7367 433 *
AndyA 6:2c77afdf7367 434 * The supplied packet is transmitted as soon as possible and the reciever re-enabled once transmission is complete.
AndyA 6:2c77afdf7367 435 * Maximum packet size is 125 bytes.
AndyA 6:2c77afdf7367 436 */
AndyA 0:bddb8cd5e7df 437 void sendFrame(uint8_t* message, uint16_t length); // send a raw frame (length in bytes)
AndyA 6:2c77afdf7367 438
AndyA 6:2c77afdf7367 439 /** Send a packet at a certain time
AndyA 6:2c77afdf7367 440 * @param message A buffer containing the data to send
AndyA 6:2c77afdf7367 441 * @param length The length of the data in bytes.
AndyA 6:2c77afdf7367 442 * @param TxTimestamp The timestamp to send the packet.
AndyA 6:2c77afdf7367 443 *
AndyA 6:2c77afdf7367 444 * The supplied packet is transmitted once the internal clock reaches the specified timestamp.
AndyA 6:2c77afdf7367 445 * Maximum packet size is 125 bytes.
AndyA 6:2c77afdf7367 446 * Rx is disabled as soon as this command is issued and re-enabled once transmission is complete.
AndyA 6:2c77afdf7367 447 * Note - 9 LSBs are ignored so timings are only accurate to ~8ns. For more accurate timing check the
AndyA 6:2c77afdf7367 448 * tx timestamp after transmission is complete.
AndyA 6:2c77afdf7367 449 */
AndyA 0:bddb8cd5e7df 450 void sendDelayedFrame(uint8_t* message, uint16_t length, uint64_t TxTimestamp);
AndyA 0:bddb8cd5e7df 451
AndyA 6:2c77afdf7367 452 /** Set up data for a transmit on sync
AndyA 6:2c77afdf7367 453 * @param message A buffer containing the data to send
AndyA 6:2c77afdf7367 454 * @param length The length of the data in bytes.
AndyA 6:2c77afdf7367 455 *
AndyA 6:2c77afdf7367 456 * Data is loaded into the transmit buffer but the transmission is not started.
AndyA 6:2c77afdf7367 457 * Maximum packet size is 125 bytes.
AndyA 6:2c77afdf7367 458 */
AndyA 0:bddb8cd5e7df 459 void setupSyncedFrame(uint8_t* message, uint16_t length);
AndyA 6:2c77afdf7367 460
AndyA 6:2c77afdf7367 461 /** Transmit on the next sync pulse
AndyA 6:2c77afdf7367 462 *
AndyA 6:2c77afdf7367 463 * On the next rising edge of the sync line the transmitter will be activated.
AndyA 6:2c77afdf7367 464 * The packet must have previously been set up using setupSyncedFrame()
AndyA 6:2c77afdf7367 465 *
AndyA 6:2c77afdf7367 466 * Rx is disabled until transmission is complete.
AndyA 6:2c77afdf7367 467 */
AndyA 0:bddb8cd5e7df 468 void armSyncedFrame();
AndyA 0:bddb8cd5e7df 469
AndyA 6:2c77afdf7367 470 /** Enable reciever
AndyA 6:2c77afdf7367 471 *
AndyA 6:2c77afdf7367 472 * This is automatically done after each Tx completes but can also be forced manually
AndyA 6:2c77afdf7367 473 */
AndyA 0:bddb8cd5e7df 474 void startRX(); // start listening for frames
AndyA 6:2c77afdf7367 475
AndyA 6:2c77afdf7367 476 /** Disable radio link
AndyA 6:2c77afdf7367 477 *
AndyA 6:2c77afdf7367 478 * Disables both the recieve and transmit systems.
AndyA 6:2c77afdf7367 479 * Any transmissions waiting for a delayed time or sync pulse will be canceled.
AndyA 6:2c77afdf7367 480 */
AndyA 0:bddb8cd5e7df 481 void stopTRX(); // disable tranceiver go back to idle mode
AndyA 0:bddb8cd5e7df 482
AndyA 6:2c77afdf7367 483 /** Set receive antenna delay
AndyA 6:2c77afdf7367 484 * @param ticks Delay in system clock cycles
AndyA 6:2c77afdf7367 485 */
AndyA 0:bddb8cd5e7df 486 void setRxDelay(uint16_t ticks);
AndyA 6:2c77afdf7367 487 /** Set transmit antenna delay
AndyA 6:2c77afdf7367 488 * @param ticks Delay in system clock cycles
AndyA 6:2c77afdf7367 489 */
AndyA 0:bddb8cd5e7df 490 void setTxDelay(uint16_t ticks);
AndyA 0:bddb8cd5e7df 491
AndyA 6:2c77afdf7367 492 /** Get last packet size
AndyA 6:2c77afdf7367 493 * @return The length in bytes of the last packet received
AndyA 6:2c77afdf7367 494 */
AndyA 0:bddb8cd5e7df 495 uint16_t getFramelength(); // to get the framelength of the received frame from the PHY header
AndyA 0:bddb8cd5e7df 496
AndyA 6:2c77afdf7367 497 /** Get last recieved packet
AndyA 6:2c77afdf7367 498 * @param buffer The location to put the received data
AndyA 6:2c77afdf7367 499 * @param length The number of bytes to read
AndyA 6:2c77afdf7367 500 */
AndyA 0:bddb8cd5e7df 501 void readRxBuffer( uint8_t *buffer, int length ) {
AndyA 0:bddb8cd5e7df 502 readRegister(DW1000_RX_BUFFER, 0, buffer, length);
AndyA 0:bddb8cd5e7df 503 }
AndyA 0:bddb8cd5e7df 504
AndyA 6:2c77afdf7367 505 /** Read a value from the OTP memory
AndyA 6:2c77afdf7367 506 * @param word_address The OTP memory address to read.
AndyA 6:2c77afdf7367 507 * @return The 32 bit value at that address.
AndyA 6:2c77afdf7367 508 *
AndyA 6:2c77afdf7367 509 * See Section 6.3.1 of the user manual for the memory map.
AndyA 6:2c77afdf7367 510 */
AndyA 1:dcbd071f38d5 511 uint32_t readOTP (uint16_t word_address);
AndyA 6:2c77afdf7367 512
AndyA 6:2c77afdf7367 513 /** Write a value to the OTP memory
AndyA 6:2c77afdf7367 514 * @param word_address The OTP memory address to read.
AndyA 6:2c77afdf7367 515 * @param data The value to write
AndyA 6:2c77afdf7367 516 * @return True if the write was sucessful.
AndyA 6:2c77afdf7367 517 *
AndyA 6:2c77afdf7367 518 * Writes the supplied data to the OTP memory and then reads it back to verify it was sucessfully programmed.
AndyA 6:2c77afdf7367 519 * Note - this is a one time operation for each memory address.
AndyA 6:2c77afdf7367 520 * See Section 6.3.1 of the user manual for the memory map.
AndyA 6:2c77afdf7367 521 * It is recommened that the device is reset or power cycled after programing.
AndyA 6:2c77afdf7367 522 */
AndyA 0:bddb8cd5e7df 523 bool writeOTP(uint16_t word_address,uint32_t data); // program a value in the OTP. It is recommended to reset afterwards.
AndyA 0:bddb8cd5e7df 524
AndyA 6:2c77afdf7367 525
AndyA 4:5f1025df5530 526 /** Get setup description
AndyA 4:5f1025df5530 527 *
AndyA 4:5f1025df5530 528 * @param buffer Data buffer to place description in
AndyA 4:5f1025df5530 529 * @param len Length of data buffer
AndyA 4:5f1025df5530 530 *
AndyA 4:5f1025df5530 531 * Places a text string describing the current setup into the suppled buffer.
AndyA 4:5f1025df5530 532 */
AndyA 4:5f1025df5530 533 void getSetup(char *buffer, int len);
AndyA 4:5f1025df5530 534
AndyA 0:bddb8cd5e7df 535 protected:
AndyA 6:2c77afdf7367 536 /** Reset the reciever logic
AndyA 6:2c77afdf7367 537 *
AndyA 6:2c77afdf7367 538 * This should be done after any receive errors
AndyA 6:2c77afdf7367 539 */
AndyA 0:bddb8cd5e7df 540 void resetRX(); // soft reset only the tranciever part of DW1000
AndyA 6:2c77afdf7367 541
AndyA 6:2c77afdf7367 542 /** Enable/Disable interrupts
AndyA 6:2c77afdf7367 543 * @param RX true to enable recieve interrupts
AndyA 6:2c77afdf7367 544 * @param TX true to enable transmit interrupts
AndyA 6:2c77afdf7367 545 *
AndyA 6:2c77afdf7367 546 * For c style callbacks simply set the callback to null to disable it.
AndyA 6:2c77afdf7367 547 * When using c++ style callbacks both are enabled as default, this allows a method to disabled one or both.
AndyA 6:2c77afdf7367 548 */
AndyA 0:bddb8cd5e7df 549 void setInterrupt(bool RX, bool TX); // set Interrupt for received a good frame (CRC ok) or transmission done
AndyA 0:bddb8cd5e7df 550
AndyA 3:1459d2aa6b97 551 /** Set Transmit gain
AndyA 3:1459d2aa6b97 552 *
AndyA 3:1459d2aa6b97 553 * @param normalPowercB Normal transmit gain to use.
AndyA 3:1459d2aa6b97 554 * @param boost500 Gain to use for 6.8Mb/s packets of under 500ms.
AndyA 3:1459d2aa6b97 555 * @param boost250 Gain to use for 6.8Mb/s packets of under 250ms.
AndyA 3:1459d2aa6b97 556 * @param boost125 Gain to use for 6.8Mb/s packets of under 125ms.
AndyA 3:1459d2aa6b97 557 *
AndyA 3:1459d2aa6b97 558 * All gains are in cB (dB * 10). Gains can be between 0 and 335 (33.5dB).
AndyA 3:1459d2aa6b97 559 * Boost gains are optional, if not specified boost gains are set to the power for the lower rate (e.g. boost125 is set to the boost250 level).
AndyA 3:1459d2aa6b97 560 */
AndyA 3:1459d2aa6b97 561 void setTxPower(uint16_t normalPowercB, uint16_t boost500 = 0, uint16_t boost250 = 0, uint16_t boost125 = 0);
AndyA 3:1459d2aa6b97 562
AndyA 0:bddb8cd5e7df 563
AndyA 0:bddb8cd5e7df 564 private:
AndyA 0:bddb8cd5e7df 565 void resetAll(); // soft reset the entire DW1000 (some registers stay as they were see User Manual)
AndyA 3:1459d2aa6b97 566
AndyA 3:1459d2aa6b97 567 void setupRadio();
AndyA 3:1459d2aa6b97 568
AndyA 4:5f1025df5530 569 // system register setup functions
AndyA 3:1459d2aa6b97 570 void setupAGC();
AndyA 3:1459d2aa6b97 571 void setupRxConfig();
AndyA 3:1459d2aa6b97 572 void setupLDE();
AndyA 3:1459d2aa6b97 573 void setupChannel();
AndyA 3:1459d2aa6b97 574 void setupTxFrameCtrl();
AndyA 3:1459d2aa6b97 575 void setupAnalogRF();
AndyA 3:1459d2aa6b97 576 void setupFreqSynth();
AndyA 3:1459d2aa6b97 577 void setupTxCalibration();
AndyA 3:1459d2aa6b97 578 void setupSystemConfig();
AndyA 0:bddb8cd5e7df 579 void loadLDE(); // load the leading edge detection algorithm to RAM, [IMPORTANT because receiving malfunction may occur] see User Manual LDELOAD on p22 & p158
AndyA 0:bddb8cd5e7df 580 void loadLDOTUNE(); // load the LDO tuning as set in the factory
AndyA 0:bddb8cd5e7df 581
AndyA 3:1459d2aa6b97 582 uint8_t powerToRegValue(uint16_t powercB);
AndyA 3:1459d2aa6b97 583
AndyA 4:5f1025df5530 584 DW1000Setup systemConfig;
AndyA 3:1459d2aa6b97 585
AndyA 0:bddb8cd5e7df 586
AndyA 0:bddb8cd5e7df 587
AndyA 0:bddb8cd5e7df 588 // Interrupt
AndyA 0:bddb8cd5e7df 589 InterruptIn irq; // Pin used to handle Events from DW1000 by an Interrupthandler
AndyA 0:bddb8cd5e7df 590 FunctionPointer callbackRX; // function pointer to callback which is called when successfull RX took place
AndyA 0:bddb8cd5e7df 591 FunctionPointer callbackTX; // function pointer to callback which is called when successfull TX took place
AndyA 0:bddb8cd5e7df 592 void ISR(); // interrupt handling method (also calls according callback methods)
AndyA 0:bddb8cd5e7df 593
AndyA 0:bddb8cd5e7df 594 // SPI Inteface
AndyA 7:b13881dbb09d 595 BurstSPI spi; // SPI Bus
AndyA 0:bddb8cd5e7df 596 DigitalOut cs; // Slave selector for SPI-Bus (here explicitly needed to start and end SPI transactions also usable to wake up DW1000)
AndyA 0:bddb8cd5e7df 597
AndyA 0:bddb8cd5e7df 598 uint8_t readRegister8(uint8_t reg, uint16_t subaddress); // expressive methods to read or write the number of bits written in the name
AndyA 0:bddb8cd5e7df 599 uint16_t readRegister16(uint8_t reg, uint16_t subaddress);
AndyA 0:bddb8cd5e7df 600 uint32_t readRegister32(uint8_t reg, uint16_t subaddress);
AndyA 0:bddb8cd5e7df 601 uint64_t readRegister40(uint8_t reg, uint16_t subaddress);
AndyA 0:bddb8cd5e7df 602 uint64_t readRegister64(uint8_t reg, uint16_t subaddress);
AndyA 0:bddb8cd5e7df 603 void writeRegister8(uint8_t reg, uint16_t subaddress, uint8_t buffer);
AndyA 0:bddb8cd5e7df 604 void writeRegister16(uint8_t reg, uint16_t subaddress, uint16_t buffer);
AndyA 0:bddb8cd5e7df 605 void writeRegister32(uint8_t reg, uint16_t subaddress, uint32_t buffer);
AndyA 0:bddb8cd5e7df 606 void writeRegister40(uint8_t reg, uint16_t subaddress, uint64_t buffer);
AndyA 0:bddb8cd5e7df 607
AndyA 0:bddb8cd5e7df 608 void readRegister(uint8_t reg, uint16_t subaddress, uint8_t *buffer, int length); // reads the selected part of a slave register into the buffer memory
AndyA 0:bddb8cd5e7df 609 void writeRegister(uint8_t reg, uint16_t subaddress, uint8_t *buffer, int length); // writes the buffer memory to the selected slave register
AndyA 0:bddb8cd5e7df 610 void setupTransaction(uint8_t reg, uint16_t subaddress, bool write); // sets up an SPI read or write transaction with correct register address and offset
AndyA 0:bddb8cd5e7df 611 void select(); // selects the only slave for a transaction
AndyA 0:bddb8cd5e7df 612 void deselect(); // deselects the only slave after transaction
AndyA 0:bddb8cd5e7df 613 };
AndyA 0:bddb8cd5e7df 614
AndyA 0:bddb8cd5e7df 615 #endif