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

main.cpp

Committer:
manumaet
Date:
2014-11-24
Revision:
17:8afa5f9122da
Parent:
16:96879e1c99f2
Child:
18:bbc7ca7d3a95

File content as of revision 17:8afa5f9122da:

#include "mbed.h"
#include "PC.h"                         // Serial Port via USB for debugging with Terminal
#include "DW1000.h"

PC          pc(USBTX, USBRX, 921600);   // USB UART Terminal
DW1000      dw(D11, D12, D13, D10, D14);     // SPI1 on Nucleo Board (MOSI, MISO, SCLK, CS, IRQ)

const float timeunit = 1/(128*499.2e6);
int i=0;
char message[1200] = "";
uint64_t timestamp_old = 0;

//#define PINGPONG

void Interrupthandler() {
    /*uint8_t frameready = 0;
    dw.readRegister(DW1000_SYS_STATUS, 1, &frameready, 1);
    pc.printf("Interrupt status: %X\r\n", frameready);*/
    
    uint16_t framelength = 0;                                       // get framelength TODO: just for debugging of string
    dw.readRegister(DW1000_RX_FINFO, 0, (uint8_t*)&framelength, 2);
    framelength &= 0x03FF;
    framelength -= 2;
    
    if(framelength<200) {
        char* receive = dw.receiveString();                             // receive a string
        pc.printf("Received: \"%s\" %d ", receive, framelength);
        delete[] receive;
    } else
        pc.printf("Received! %d ", framelength);
    
    uint64_t status;
    dw.readRegister(DW1000_SYS_STATUS, 0, (uint8_t*)&status, 5);
    status &= 0xFFFFFFFFFF;                                      // only 40-Bit
    pc.printf("Status: %010llX  ", status);
    
    uint64_t timestamp;
    dw.readRegister(DW1000_RX_TIME, 0, (uint8_t*)&timestamp, 5);
    timestamp &= 0xFFFFFFFFFF;                                      // only 40-Bit
    uint64_t difference = timestamp - timestamp_old;
    timestamp_old = timestamp;
    //pc.printf("Timestamp: %lld\r\n", difference);
    pc.printf("Timestamp: %fs", difference*timeunit);       // TODO: gives some wrong values because of timer overflow
    pc.printf("\r\n");
    dw.startRX();
}

int main() {
    pc.printf("DecaWave 0.1\r\nup and running!\r\n");
    
    dw.setEUI(0xFAEDCD01FAEDCD01);                  // basic methods called to check if we have a slave
    pc.printf("%d DEVICE_ID register: 0x%X\r\n", i, dw.getDeviceID());
    pc.printf("%d EUI register: %016llX\r\n", i, dw.getEUI());
    pc.printf("%d Voltage: %f\r\n", i, dw.getVoltage());
    
    uint32_t conf = 0;     // read System Configuration
    dw.readRegister(DW1000_SYS_CFG, 0, (uint8_t*)&conf, 4);
    pc.printf("%d System Configuration: %X\r\n", i, conf);
    
    dw.callbackRX = &Interrupthandler;
    
    // Receiver initialisation
    uint8_t dataframereadyinterrupt = 0x40; // only good frame 0x40 all frames 0x20
    dw.writeRegister(DW1000_SYS_MASK, 1, &dataframereadyinterrupt, 1);
    dw.startRX();
    
    while(1) {
#if 1
        if(i < 1200) {
            message[i] = 48+ (i%10);
            message[i+1] = '\0';
        }
        
        //wait(0.1);
        char messagecheck[1200];
        dw.sendString(message);
        wait_us(10000);
        dw.readRegister(DW1000_TX_BUFFER, 0, (uint8_t*)messagecheck, strlen(message)+1);
        if (i < 200)
            pc.printf("%d Sent: \"%s\" %d\r\n", i, messagecheck, strlen(message)+1);
        else
            pc.printf("%d Sent! %d\r\n", i, strlen(message)+1);
        
#endif
#if 0
        pc.printf("%d Waiting...  ", i);
        uint64_t status;
        dw.readRegister(DW1000_SYS_STATUS, 0, (uint8_t*)&status, 5);
        status &= 0xFFFFFFFFFF;                                      // only 40-Bit
        pc.printf("Status: %010llX\r\n", status);
        wait(5);
#endif
        i++;
    }
}