rt-thread-official/components
Meco Man ce16945cba [kernel][version] 采用新的版本宏定义
版本控制规范:https://semver.org/

目前的版本子号不是很规范,其中RT_VERSION甚至和VS那边造成了冲突
```c
/* RT-Thread version information */
#define RT_VERSION                      4L              /**< major version number */
#define RT_SUBVERSION                   1L              /**< minor version number */
#define RT_REVISION                     1L              /**< revise version number */
```

参考ESP32:
```c
/** Major version number (X.x.x) */
#define ESP_ARDUINO_VERSION_MAJOR   2
/** Minor version number (x.X.x) */
#define ESP_ARDUINO_VERSION_MINOR   0
/** Patch version number (x.x.X) */
#define ESP_ARDUINO_VERSION_PATCH   3
```

建议改成:
```c
/* Major version number (X.x.x) */
#define RT_VERSION_MAJOR   4
/* Minor version number (x.X.x) */
#define RT_VERSION_MINOR   2
/* Patch version number (x.x.X) */
#define RT_VERSION_PATCH   0
```
2022-09-07 10:11:45 -04:00
..
dfs Fix some compilation warning (#5744) 2022-08-02 12:09:49 -04:00
drivers [modify]修改waitqueue.c注释中的错误 (#6376) 2022-09-06 00:29:05 -04:00
fal Fix some compilation warning (#5744) 2022-08-02 12:09:49 -04:00
finsh [msh] add available memory information for free cmd 2022-07-07 18:08:06 +08:00
legacy [kernel][version] 采用新的版本宏定义 2022-09-07 10:11:45 -04:00
libc [armlibc] solve the compiling error 2022-08-17 23:48:05 -04:00
lwp [scons][iar] 将IAR的PLATFORM字段由iar调整为iccarm 2022-06-09 07:01:59 +08:00
net [kernel][version] 采用新的版本宏定义 2022-09-07 10:11:45 -04:00
utilities [ymodem] move error codes to rym_code to silence warnings 2022-08-04 01:50:04 -04:00
vbus uniform code writing-disable interrupt 2022-04-20 14:22:43 +08:00
vmm uniform code writing-disable interrupt 2022-04-20 14:22:43 +08:00
Kconfig [kconfig] add 64bit default value for stack size. set tick HZ as 1000 by default (#5778) 2022-04-09 00:40:36 +08:00
SConscript [components] 移除对老版本bsp的lwip版本默认选定 2021-06-28 15:33:14 +08:00