Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
decadriver/deca_version.h@0:a3b83d366423, 2017-12-06 (annotated)
- Committer:
- aungriah
- Date:
- Wed Dec 06 21:35:45 2017 +0000
- Revision:
- 0:a3b83d366423
test
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
aungriah | 0:a3b83d366423 | 1 | /*! ---------------------------------------------------------------------------- |
aungriah | 0:a3b83d366423 | 2 | * @file deca_version.h |
aungriah | 0:a3b83d366423 | 3 | * @brief Defines the version info for the DW1000 device driver including its API |
aungriah | 0:a3b83d366423 | 4 | * |
aungriah | 0:a3b83d366423 | 5 | * @attention |
aungriah | 0:a3b83d366423 | 6 | * |
aungriah | 0:a3b83d366423 | 7 | * Copyright 2013 (c) Decawave Ltd, Dublin, Ireland. |
aungriah | 0:a3b83d366423 | 8 | * |
aungriah | 0:a3b83d366423 | 9 | * All rights reserved. |
aungriah | 0:a3b83d366423 | 10 | * |
aungriah | 0:a3b83d366423 | 11 | */ |
aungriah | 0:a3b83d366423 | 12 | |
aungriah | 0:a3b83d366423 | 13 | #ifndef _DECA_VERSION_H_ |
aungriah | 0:a3b83d366423 | 14 | #define _DECA_VERSION_H_ |
aungriah | 0:a3b83d366423 | 15 | |
aungriah | 0:a3b83d366423 | 16 | // |
aungriah | 0:a3b83d366423 | 17 | // The DW1000 device driver is separately version numbered to any version the application using it may have |
aungriah | 0:a3b83d366423 | 18 | // |
aungriah | 0:a3b83d366423 | 19 | // Two symbols are defined here: one hexadecimal value and one string that includes the hex bytes. |
aungriah | 0:a3b83d366423 | 20 | // Both should be updated together in a consistent way when the software is being modified. |
aungriah | 0:a3b83d366423 | 21 | // |
aungriah | 0:a3b83d366423 | 22 | // The format of the hex version is 0xAABBCC and the string ends with AA.BB.CC, where... |
aungriah | 0:a3b83d366423 | 23 | // |
aungriah | 0:a3b83d366423 | 24 | // Quantity CC is updated for minor changes/bug fixes that should not need user code changes |
aungriah | 0:a3b83d366423 | 25 | // Quantity BB is updated for changes/bug fixes that may need user code changes |
aungriah | 0:a3b83d366423 | 26 | // Quantity AA is updated for major changes that will need user code changes |
aungriah | 0:a3b83d366423 | 27 | // |
aungriah | 0:a3b83d366423 | 28 | |
aungriah | 0:a3b83d366423 | 29 | #define DW1000_DRIVER_VERSION 0x040001 |
aungriah | 0:a3b83d366423 | 30 | #define DW1000_DEVICE_DRIVER_VER_STRING "DW1000 Device Driver Version 04.00.01" |
aungriah | 0:a3b83d366423 | 31 | |
aungriah | 0:a3b83d366423 | 32 | #endif |
aungriah | 0:a3b83d366423 | 33 |