Skip to content

andrewytf/arduino-dw1000

 
 

Repository files navigation

arduino-dw1000

Required know-how Additional hardware required c++11 releases min arduino ide GitHub license

A library that offers basic functionality to use Decawave's DW1000 chips/modules with Arduino (see https://www.decawave.com/products/dwm1000-module).

Project state

Development: There is no active development by the owner thotro. Anyway this library is still maintained, so make pull requests if you found a bug or developed a new feature!

TODOs:

  • Fill wiki: https://github.com/thotro/arduino-dw1000/wiki
  • MAC and frame filtering, error handling
  • Sleep/power optimizations
  • Refactor DW1000Mac
  • Refactor DW1000Ranging
  • Refactor DW1000Device
  • Update examples (complete todos in header notice)

What can I do with this lib?: Stable transmission of messages between two modules is possible. The code for device tuning is working as well, hence different modes of operation can be chosen. As frame filtering (i.e. via MAC conforming messages) is partially implemented yet, internal features of the chip for node addressing and auto-acknowledgement of messages can not be used. This is part of a future milestone. For now, if acknowledgements are required, they have to be sent manually and node addresses have to be encoded in the message payload and processed by the host controller.

General notice:

Installation

Requires c++11 support, Arduino IDE >= 1.6.6 support c++11.

  1. Get a ZIP file of the master branch or the latest release and save somewhere on your machine.
  2. Open your Arduino IDE and goto Sketch / Include Library / Add .ZIP Library...
  3. Select the downloaded ZIP file of the DW1000 library
  4. You should now see the library in the list and have access to the examples in the dedicated section of the IDE

Note that in version 1.6.6 of your Arduino IDE you can get the library via the Arduino library manager.

Contents

Usage

General usage of the DW1000 library is depicted below. Please see the Arduino test example codes (described in the project structure) for more up-to-date and operational reference usage.

At the moment the library contains two types:

  • DW1000: State: stable. The statically accessible entity to work with your modules. Offers a variety of configuration options and manages module states and actions.

  • DW1000Time: State: stable. Container entities that handle DW1000 specific timing values. These are required to allow accurate timestamps and time based computations; they aid in avoiding potential precision and capacity problems of standard number formats in Arduino and basically are wrapper objects for 64-bit signed integer data types; most importantly they take care of all bit-to-time-and-distance (and vice versa) conversions.

  • DW1000Ranging: State: prototype. Contain all functions which allow to make the ranging protocole.

  • DW1000Device: State: prototype. Contain all informations (long address, short ephemeral address, DW1000Time of transition) about a distant device (anchor or tag) on the same network.

  • DW1000Mac: State: prototype. This class is a child of the DW1000Device class and allow to generate the MAC frame for his DW1000Device parent.

#include <DW1000.h>
...
// init with interrupt line and optionally with reset line
DW1000.begin(irq_pin[, rst_pin]);
// select a specific chip via a chip select line
DW1000.select(cs_pin);
// or use DW1000.reselect(cs_pin) to switch to previously selected chip
...
// open a device configuration sessions
DW1000.newConfiguration();
// configure specific aspects and/or choose defaults
DW1000.setDefaults();
DW1000.setDeviceAddress(5);
DW1000.setNetworkId(10);
// modes that define data rate, frequency, etc. (see API docs)
DW1000.enableMode(DW1000.MODE_LONGDATA_RANGE_LOWPOWER);
// ... and other stuff - finally upload to the module.
DW1000.commitConfiguration();
...
// set some interrupt callback routines
DW1000.attachSentHandler(some_handler_function);
DW1000.attachReceivedHandler(another_handler_function);
...
// open a new transmit session
DW1000.newTransmit();
// configure specific aspects and/or choose defaults
DW1000.setDefaults();
DW1000.setData(some_data);
DW1000Time delayTime = DW1000Time(100, DW1000Time::MILLISECONDS);
[DW1000Time futureTimestamp = ]DW1000.setDelay(delayTime);
// ... and other stuff - finally start the transmission
DW1000.startTransmit();
...
// similar for a receiving session, like so ...
DW1000.newReceive();
DW1000.setDefaults();
// so we don't need to restart the receiver manually each time
DW1000.receivePermanently(true);
// ... and other stuff - finally start awaiting messages
DW1000.startReceive();
...

Dependency

Disclaimer: This is maybe a incomplete list. Please notice that some dependency libraries may require a reproduction of copyright and license, even if they are shipped as binary!!

  • Arduino.h

    • From: Arduino IDE / target specific
    • License: (target: Arduino) GNU Lesser General Public License 2.1
  • SPI.h

    • From: Arduino IDE / target specific
    • License: (target: Arduino) GNU Lesser General Public License 2.1
  • stdint.h

    • From: Arduino IDE / Compiler and target specific
    • License: different
  • stdio.h

    • From: Arduino IDE / Compiler and target specific
    • License: different
  • stdlib.h

    • From: Arduino IDE / Compiler and target specific
    • License: different
  • string.h

    • From: Arduino IDE / Compiler and target specific
    • License: different

License

Apache License 2.0 (see LICENSE.md)

About

A library that offers functionality to use Decawave's DW1000 chips/modules with Arduino.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 94.4%
  • C 5.6%