We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15ef367 commit 4acef9bCopy full SHA for 4acef9b
include/rtdef.h
@@ -83,7 +83,7 @@ extern "C" {
83
/* RT-Thread version information */
84
#define RT_VERSION_MAJOR 5 /**< Major version number (X.x.x) */
85
#define RT_VERSION_MINOR 2 /**< Minor version number (x.X.x) */
86
-#define RT_VERSION_PATCH 0 /**< Patch version number (x.x.X) */
+#define RT_VERSION_PATCH 1 /**< Patch version number (x.x.X) */
87
88
/* e.g. #if (RTTHREAD_VERSION >= RT_VERSION_CHECK(4, 1, 0) */
89
#define RT_VERSION_CHECK(major, minor, revise) ((major * 10000U) + (minor * 100U) + revise)
src/Kconfig
@@ -433,7 +433,7 @@ endif
433
434
config RT_VER_NUM
435
hex
436
- default 0x50200
+ default 0x50201
437
help
438
RT-Thread version number
439
0 commit comments