46 #ifndef __DRIVERLIB_VER_H__
47 #define __DRIVERLIB_VER_H__
61 #define DRIVERLIB_MAJOR_VER 2
62 #define DRIVERLIB_MINOR_VER 00
64 #define DRIVERLIB_PATCH_VER 06
66 #define DRIVERLIB_BUILD_ID 42416
85 #define DRIVERLIB_DECLARE_VERSION(major, minor, patch, build) \
86 const volatile uint8_t driverlib_version_##major##_##minor##_##patch##_##build
117 #define DRIVERLIB_ASSERT_VERSION(major, minor, patch, build) \
118 (driverlib_version_##major##_##minor##_##patch##_##build)
142 #define DRIVERLIB_ASSERT_CURR_VERSION() \
143 DRIVERLIB_ASSERT_VERSION(2, 00, 06, 42416)
152 #endif // __DRIVERLIB_VER_H__
#define DRIVERLIB_DECLARE_VERSION(major, minor, patch, build)