SDKs are released with versions such as 2.6, 2.7, 2.4.1, etc.
In the SDK source code are code line like this.
/*! @name Driver version */
/*@{*/
/*! @brief CLOCK driver version 2.2.0. */
#define FSL_CLOCK_DRIVER_VERSION (MAKE_VERSION(2, 2, 0))
or
/*! @name Driver version */
/*@{*/
/*! @brief CLOCK driver version 2.1.5. */
#define FSL_CLOCK_DRIVER_VERSION (MAKE_VERSION(2, 1, 5))
Is there a mapping between the SDK release version and the MAKE_VERSION found in the SDK source code?
Would like to know which SDK the source file came from.