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-23
Revision:
11:c87d37db2c6f
Parent:
10:d077bb12d259
Child:
12:985aa9843c3c

File content as of revision 11:c87d37db2c6f:

#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)


uint64_t timestamp_old = 0;
//#define SENDER

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
    dw.readRegister(DW1000_RX_FINFO, 0, (uint8_t*)&framelength, 2);
    framelength &= 0x03FF;
    framelength -= 2;
    
    char* receive = dw.receiveString();
    pc.printf("Received: %s %d   ", receive, framelength);
    delete[] receive;
    
    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);
    
    /*uint8_t xtalt;                            // for clock tuning
    dw.readRegister(DW1000_FS_CTRL, 0x0E, (uint8_t*)&xtalt, 1);
    pc.printf("XTALT: %X\r\n", xtalt);*/
    
    //dw.resetRX();                                                   // TODO DONE: reset was crucial because otherwise only 1 frame is received correct, cause: LDE crashing because you have to manually initialize
    dw.receiveFrame();
}

int main() {
    int i=0;
    char message[1024] = "";
    pc.printf("DecaWave 0.1\r\nup and running!\r\n");
    
    dw.setEUI(0xFAEDCD01FAEDCD01);
    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());
    
    // read System Configuration
    uint32_t conf = 0;
    dw.readRegister(DW1000_SYS_CFG, 0, (uint8_t*)&conf, 4);
    pc.printf("%d System Configuration: %X\r\n", i, conf);
    
    wait(1);
    
    dw.callbackRX = &Interrupthandler;
#ifndef SENDER
    uint8_t dataframereadyinterrupt = 0x40; // only good frame 0x40 all frames 0x20
    dw.writeRegister(DW1000_SYS_MASK, 1, &dataframereadyinterrupt, 1);
    
    // Receive something
    dw.receiveFrame();
#endif
    
    while(1) {
        i++;
# ifdef SENDER                      // to make one node sender and one receiver
        //message[i-1] = 'O';
        //message[i] = '\0';
        sprintf((char*)message, "HELLO WORLD! %d", i);
        //if (i < 200)
            pc.printf("%d Message: \"%s\" %d\r\n", i, message, strlen(message)+1);
        //else
            //pc.printf("%d Message: %d\r\n", i, strlen(message)+1);
        dw.sendString(message);
        
        char messagecheck[1024];
        dw.readRegister(DW1000_TX_BUFFER, 0, (uint8_t*)messagecheck, strlen(message)+1);
        //if (i < 200)
            pc.printf("%d  Buffer: \"%s\" %d\r\n", i, messagecheck, strlen(messagecheck)+1);
        //else
            //pc.printf("%d  Buffer: %d\r\n", i, strlen(messagecheck)+1);
        /*for(int i=0; i<10; i++) {                                 // to control Voltage
            pc.printf("%d Voltage: %f\r\n", i, dw.getVoltage());
            wait(0.2);
        }*/
        //if (i<27)
            wait(1);
        //else
            //wait(3);
#else
        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(1);
# endif
        
    }
}