amiro-lld / drivers / DW1000 / v2 / decadriver / deca_version.h @ 22401187
History | View | Annotate | Download (1.123 KB)
1 |
/*! ----------------------------------------------------------------------------
|
---|---|
2 |
* @file deca_version.h
|
3 |
* @brief Defines the version info for the DW1000 device driver including its API
|
4 |
*
|
5 |
* @attention
|
6 |
*
|
7 |
* Copyright 2013 (c) Decawave Ltd, Dublin, Ireland.
|
8 |
*
|
9 |
* All rights reserved.
|
10 |
*
|
11 |
*/
|
12 |
|
13 |
#ifndef _DECA_VERSION_H_
|
14 |
#define _DECA_VERSION_H_
|
15 |
|
16 |
//
|
17 |
// The DW1000 device driver is separately version numbered to any version the application using it may have
|
18 |
//
|
19 |
// Two symbols are defined here: one hexadecimal value and one string that includes the hex bytes.
|
20 |
// Both should be updated together in a consistent way when the software is being modified.
|
21 |
//
|
22 |
// The format of the hex version is 0xAABBCC and the string ends with AA.BB.CC, where...
|
23 |
//
|
24 |
// Quantity CC is updated for minor changes/bug fixes that should not need user code changes
|
25 |
// Quantity BB is updated for changes/bug fixes that may need user code changes
|
26 |
// Quantity AA is updated for major changes that will need user code changes
|
27 |
//
|
28 |
|
29 |
#define DW1000_DRIVER_VERSION 0x050100 |
30 |
#define DW1000_DEVICE_DRIVER_VER_STRING "DW1000 Device Driver Version 05.01.00" |
31 |
|
32 |
#endif
|