rt-thread-official/bsp/simulator/drivers
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
..
winsock [add] winsock implement on windows simulator. (#6010) 2022-05-31 11:50:17 +08:00
SConscript [kernel][version] 采用新的版本宏定义 2022-09-07 10:11:45 -04:00
board.c [simulator] fix some warnings (#6209) 2022-08-02 23:21:09 -04:00
board.h [bsp][simulator] 支持自动初始化及用户 main 入口 2021-04-01 17:01:14 +08:00
dfs_win32.c [simulator] 消除windows下的警告 2022-05-19 09:43:20 +08:00
drv_rtc.c [simulator] 消除windows下的警告 2022-05-19 09:43:20 +08:00
module_win32.c [update] move dfs_posix.h to legacy/dfs/dfs_posix.h 2022-01-14 23:09:32 +08:00
nanddrv_file.c [simulator] 手动-自动格式化整理 2021-03-20 22:39:32 +08:00
sd_sim.c [simulator] 解决simulator模拟器不能挂在sd卡的问题,并更新文档 2022-04-11 14:07:55 +08:00
sdl_fb.c [fix] pthread_mutex_destroy can't work. (#6212) 2022-08-03 12:29:16 -04:00
sst25vfxx_mtd.h [simulator] 手动-自动格式化整理 2021-03-20 22:39:32 +08:00
sst25vfxx_mtd_sim.c [mutex] use RT_IPC_FLAG_PRIO to replace RT_IPC_FLAG_FIFO 2021-11-17 15:57:15 -05:00
uart_console.c [simulator] fix some warnings (#6209) 2022-08-02 23:21:09 -04:00
uart_console.h [simulator] 手动-自动格式化整理 2021-03-20 22:39:32 +08:00