rt-thread-official/bsp/nuvoton/libraries/nu_packages
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
..
ADC_TOUCH Nuvoton drivers updating and more LVGL supporting. (#5647) 2022-03-12 07:00:53 +08:00
AudioCodec [update] move dfs_posix.h to legacy/dfs/dfs_posix.h 2022-01-14 23:09:32 +08:00
BMX055 [nuvoton] Update porting drivers and configurations. 2021-11-10 16:20:21 +08:00
Demo [kernel][version] 采用新的版本宏定义 2022-09-07 10:11:45 -04:00
FSA506 [bsp/nuvoton] Upload missing files. (#6052) 2022-06-13 21:16:55 +08:00
ILI9341 Nuvoton drivers updating and more LVGL supporting. (#5647) 2022-03-12 07:00:53 +08:00
ILI_TPC Nuvoton drivers updating and more LVGL supporting. (#5647) 2022-03-12 07:00:53 +08:00
MAX31875 [nuvoton] Update porting drivers and configurations. 2021-11-10 16:20:21 +08:00
NuUtils [bsp/nuvoton] Update. (#6022) 2022-06-03 10:01:15 +08:00
SLCD Support M2354 platform. 2021-02-05 18:52:13 +08:00
SPINAND [nuvoton] Update porting drivers and configurations. 2021-11-10 16:20:21 +08:00
SSD1963 [nuvoton] Update drivers and project setting. (#5726) 2022-03-29 07:10:35 +08:00
TPC [bsp/nuvoton] Upload missing files. (#6052) 2022-06-13 21:16:55 +08:00
Kconfig [bsp/nuvoton] Update. (#6022) 2022-06-03 10:01:15 +08:00
SConscript Support Nuvoton NuMaker-IOT-M487 and NuMaker-PFM-M487 boards. 2020-06-17 16:30:11 +08:00