This is the DW1000 driver and our self developed distance measurement application based on it. We do this as a semester thesis at ETH Zürich under the Automatic Control Laboratory in the Department of electrical engineering.

Dependencies:   mbed

Committer:
manumaet
Date:
Sun Nov 16 09:53:25 2014 +0000
Revision:
0:f50e671ffff7
Child:
4:6240b9c7a033
draft with first success to send a hello world frame to the other node :)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
manumaet 0:f50e671ffff7 1 #include "DW1000.h"
manumaet 0:f50e671ffff7 2
manumaet 0:f50e671ffff7 3 DW1000::DW1000(PinName MOSI, PinName MISO, PinName SCLK, PinName CS) : spi(MOSI, MISO, SCLK), cs(CS)
manumaet 0:f50e671ffff7 4 {
manumaet 0:f50e671ffff7 5 deselect(); // Chip must be deselected first
manumaet 0:f50e671ffff7 6 spi.format(8,0); // Setup the spi for standard 8 bit data and SPI-Mode 0 (GPIO5, GPIO6 open circuit or ground on DW1000)
manumaet 0:f50e671ffff7 7 spi.frequency(1000000); // with a 1MHz clock rate (worked up to 49MHz in our Test)
manumaet 0:f50e671ffff7 8 }
manumaet 0:f50e671ffff7 9
manumaet 0:f50e671ffff7 10 uint32_t DW1000::getDeviceID() {
manumaet 0:f50e671ffff7 11 uint32_t result;
manumaet 0:f50e671ffff7 12 readRegister(DW1000_DEV_ID, 0, (uint8_t*)&result, 4);
manumaet 0:f50e671ffff7 13 return result;
manumaet 0:f50e671ffff7 14 }
manumaet 0:f50e671ffff7 15
manumaet 0:f50e671ffff7 16 uint64_t DW1000::getEUI() {
manumaet 0:f50e671ffff7 17 uint64_t result;
manumaet 0:f50e671ffff7 18 readRegister(DW1000_EUI, 0, (uint8_t*)&result, 8);
manumaet 0:f50e671ffff7 19 return result;
manumaet 0:f50e671ffff7 20 }
manumaet 0:f50e671ffff7 21
manumaet 0:f50e671ffff7 22 void DW1000::setEUI(uint64_t EUI) {
manumaet 0:f50e671ffff7 23 writeRegister(DW1000_EUI, 0, (uint8_t*)&EUI, 8);
manumaet 0:f50e671ffff7 24 }
manumaet 0:f50e671ffff7 25
manumaet 0:f50e671ffff7 26 float DW1000::getVoltage() {
manumaet 0:f50e671ffff7 27 uint8_t buffer[7] = {0x80, 0x0A, 0x0F, 0x01, 0x00}; // form DW1000 User Manual p57
manumaet 0:f50e671ffff7 28 writeRegister(DW1000_RF_CONF, 0x11, buffer, 2);
manumaet 0:f50e671ffff7 29 writeRegister(DW1000_RF_CONF, 0x12, &buffer[2], 1);
manumaet 0:f50e671ffff7 30 writeRegister(DW1000_TX_CAL, 0x00, &buffer[3], 1);
manumaet 0:f50e671ffff7 31 writeRegister(DW1000_TX_CAL, 0x00, &buffer[4], 1);
manumaet 0:f50e671ffff7 32 readRegister(DW1000_TX_CAL, 0x03, &buffer[5], 2); // get the 8-Bit readings for Voltage and Temperature
manumaet 0:f50e671ffff7 33 float Voltage = buffer[5] * 0.0057 + 2.3;
manumaet 0:f50e671ffff7 34 float Temperature = buffer[6] * 1.13 - 113.0; // TODO: getTemperature was always ~35 degree with better formula/calibration see instance_common.c row 391
manumaet 0:f50e671ffff7 35 return Voltage;
manumaet 0:f50e671ffff7 36 }
manumaet 0:f50e671ffff7 37
manumaet 0:f50e671ffff7 38
manumaet 0:f50e671ffff7 39 // SPI Interface ------------------------------------------------------------------------------------
manumaet 0:f50e671ffff7 40 void DW1000::readRegister(uint8_t reg, uint16_t subaddress, uint8_t *buffer, int length)
manumaet 0:f50e671ffff7 41 {
manumaet 0:f50e671ffff7 42 setupTransaction(reg, subaddress, false);
manumaet 0:f50e671ffff7 43
manumaet 0:f50e671ffff7 44 // get data
manumaet 0:f50e671ffff7 45 for(int i=0; i<length; i++)
manumaet 0:f50e671ffff7 46 buffer[i] = spi.write(0x00);
manumaet 0:f50e671ffff7 47 deselect();
manumaet 0:f50e671ffff7 48 }
manumaet 0:f50e671ffff7 49
manumaet 0:f50e671ffff7 50 void DW1000::writeRegister(uint8_t reg, uint16_t subaddress, uint8_t *buffer, int length)
manumaet 0:f50e671ffff7 51 {
manumaet 0:f50e671ffff7 52 setupTransaction(reg, subaddress, true);
manumaet 0:f50e671ffff7 53
manumaet 0:f50e671ffff7 54 // put data
manumaet 0:f50e671ffff7 55 for(int i=0; i<length; i++)
manumaet 0:f50e671ffff7 56 spi.write(buffer[i]);
manumaet 0:f50e671ffff7 57 deselect();
manumaet 0:f50e671ffff7 58 }
manumaet 0:f50e671ffff7 59
manumaet 0:f50e671ffff7 60 void DW1000::setupTransaction(uint8_t reg, uint16_t subaddress, bool write)
manumaet 0:f50e671ffff7 61 {
manumaet 0:f50e671ffff7 62 reg |= (write * DW1000_WRITE_FLAG);
manumaet 0:f50e671ffff7 63 select();
manumaet 0:f50e671ffff7 64 if (subaddress > 0) { // there's a subadress, we need to set flag and send second header byte
manumaet 0:f50e671ffff7 65 spi.write(reg | DW1000_SUBADDRESS_FLAG);
manumaet 0:f50e671ffff7 66 if (subaddress > 127) { // sub address too long, we need to set flag and send third header byte
manumaet 0:f50e671ffff7 67 spi.write((uint8_t)(subaddress & 0x7F) | DW1000_2_SUBADDRESS_FLAG);
manumaet 0:f50e671ffff7 68 spi.write((uint8_t)(subaddress >> 7));
manumaet 0:f50e671ffff7 69 } else {
manumaet 0:f50e671ffff7 70 spi.write((uint8_t)subaddress);
manumaet 0:f50e671ffff7 71 }
manumaet 0:f50e671ffff7 72 } else {
manumaet 0:f50e671ffff7 73 spi.write(reg);
manumaet 0:f50e671ffff7 74 }
manumaet 0:f50e671ffff7 75 }
manumaet 0:f50e671ffff7 76
manumaet 0:f50e671ffff7 77 void DW1000::select() { cs = 0; } //Set CS low to start transmission
manumaet 0:f50e671ffff7 78 void DW1000::deselect() { cs = 1; } //Set CS high to stop transmission