deca_version.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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 2015 (c) DecaWave Ltd, Dublin, Ireland.
  8. *
  9. * All rights reserved.
  10. *
  11. */
  12. #ifndef _DECA_VERSION_H_
  13. #define _DECA_VERSION_H_
  14. //
  15. // The DW1000 device driver is separately version numbered to any version the application using it may have
  16. //
  17. // Two symbols are defined here one a hexidecimal value and string that incluides the hex bytes.
  18. // Both should be updated together in a consistent way when the software is being modified.
  19. //
  20. // The format of the hex version is 0xAABBCC and the string ends with AA.BB.CC, where...
  21. //
  22. // Quantity CC is updated for minor changes/bug fixes that should need user code changes
  23. // Quantity BB is updated for changes/bug fixes that may need user code changes
  24. // Quantity AA is updated for major changes that will need user code changes
  25. //
  26. #define DW1000_DRIVER_VERSION 0x021601
  27. #define DW1000_DEVICE_DRIVER_VER_STRING "DW1000 Device Driver Version 02.16.01"
  28. #endif