Update RT_VERSION to 5.2.2 (#10627)

Update RT_VERSION to 5.2.2.
This commit is contained in:
R b b666
2025-08-22 10:56:29 +08:00
committed by GitHub
parent 3b93a78434
commit 0b14a54614

View File

@@ -83,7 +83,7 @@ extern "C" {
/* RT-Thread version information */
#define RT_VERSION_MAJOR 5 /**< Major version number (X.x.x) */
#define RT_VERSION_MINOR 2 /**< Minor version number (x.X.x) */
#define RT_VERSION_PATCH 1 /**< Patch version number (x.x.X) */
#define RT_VERSION_PATCH 2 /**< Patch version number (x.x.X) */
/* e.g. #if (RTTHREAD_VERSION >= RT_VERSION_CHECK(4, 1, 0) */
#define RT_VERSION_CHECK(major, minor, revise) ((major * 10000U) + (minor * 100U) + revise)