cslver.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #ifndef CSLVER_H
  2. #define CSLVER_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /* ============================================================= */
  7. /**
  8. * @file cslver.h
  9. *
  10. * path ti/csl/cslver.h
  11. *
  12. * @brief Chip Support Library (CSL) Version Definitions
  13. *
  14. * ============================================================
  15. * Copyright (c) Texas Instruments Incorporated 2009-2017
  16. *
  17. * Redistribution and use in source and binary forms, with or without
  18. * modification, are permitted provided that the following conditions
  19. * are met:
  20. *
  21. * Redistributions of source code must retain the above copyright
  22. * notice, this list of conditions and the following disclaimer.
  23. *
  24. * Redistributions in binary form must reproduce the above copyright
  25. * notice, this list of conditions and the following disclaimer in the
  26. * documentation and/or other materials provided with the
  27. * distribution.
  28. *
  29. * Neither the name of Texas Instruments Incorporated nor the names of
  30. * its contributors may be used to endorse or promote products derived
  31. * from this software without specific prior written permission.
  32. *
  33. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  34. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  35. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  36. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  37. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  38. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  39. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  40. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  41. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  42. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  43. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  44. *
  45. */
  46. /**
  47. * @brief This is the CSL Version. Versions numbers are encoded in the following
  48. * format:
  49. * 0xAABBCCDD -> Arch (AA); API Changes (BB); Major (CC); Minor (DD)
  50. */
  51. #define CSL_VERSION_ID (0x03030009U)
  52. /**
  53. * @brief This is the version string which describes the CSL along with the
  54. * date and build information.
  55. */
  56. #define CSL_VERSION_STR "CSL Revision: 03.03.00.09"
  57. #ifdef __cplusplus
  58. }
  59. #endif
  60. #endif /* CSLVER_H */