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.
Fork of GA-Berkay_Alex by
Diff: decadriver/deca_version.h
- Revision:
- 0:a3b83d366423
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decadriver/deca_version.h Wed Dec 06 21:35:45 2017 +0000 @@ -0,0 +1,33 @@ +/*! ---------------------------------------------------------------------------- + * @file deca_version.h + * @brief Defines the version info for the DW1000 device driver including its API + * + * @attention + * + * Copyright 2013 (c) Decawave Ltd, Dublin, Ireland. + * + * All rights reserved. + * + */ + +#ifndef _DECA_VERSION_H_ +#define _DECA_VERSION_H_ + +// +// The DW1000 device driver is separately version numbered to any version the application using it may have +// +// Two symbols are defined here: one hexadecimal value and one string that includes the hex bytes. +// Both should be updated together in a consistent way when the software is being modified. +// +// The format of the hex version is 0xAABBCC and the string ends with AA.BB.CC, where... +// +// Quantity CC is updated for minor changes/bug fixes that should not need user code changes +// Quantity BB is updated for changes/bug fixes that may need user code changes +// Quantity AA is updated for major changes that will need user code changes +// + +#define DW1000_DRIVER_VERSION 0x040001 +#define DW1000_DEVICE_DRIVER_VER_STRING "DW1000 Device Driver Version 04.00.01" + +#endif +