diff --git a/peripherals/hal-sdk/Kconfig b/peripherals/hal-sdk/Kconfig index 1e66da01fc..1995cd7f56 100644 --- a/peripherals/hal-sdk/Kconfig +++ b/peripherals/hal-sdk/Kconfig @@ -12,5 +12,6 @@ source "$PKGS_DIR/packages/peripherals/hal-sdk/nuclei_sdk/Kconfig" source "$PKGS_DIR/packages/peripherals/hal-sdk/raspberrypi-pico-sdk/Kconfig" source "$PKGS_DIR/packages/peripherals/mm32/Kconfig" source "$PKGS_DIR/packages/peripherals/hal-sdk/wch/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/Kconfig" endmenu diff --git a/peripherals/hal-sdk/at32/Kconfig b/peripherals/hal-sdk/at32/Kconfig new file mode 100644 index 0000000000..9f0e3a7b4d --- /dev/null +++ b/peripherals/hal-sdk/at32/Kconfig @@ -0,0 +1,28 @@ +menu "AT32 HAL & SDK Drivers" + +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32a403a_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32a403a_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32a423_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32a423_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f45x_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f45x_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f402_405_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f402_405_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f403a_407_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f403a_407_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f413_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f413_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f415_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f415_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f421_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f421_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f423_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f423_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f425_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f425_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f435_437_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32f435_437_cmsis_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32m412_416_hal_driver/Kconfig" +source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/at32m412_416_cmsis_driver/Kconfig" + +endmenu diff --git a/peripherals/hal-sdk/at32/at32a403a_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32a403a_cmsis_driver/Kconfig new file mode 100644 index 0000000000..a74c5e3b70 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32a403a_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32a403a_cmsis_driver +menuconfig PKG_USING_AT32A403A_CMSIS_DRIVER + bool "AT32A403A CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32A403A_CMSIS_DRIVER + + config PKG_AT32A403A_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32a403a_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32A403A_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32A403A_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32A403A_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32a403a_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32a403a_cmsis_driver/package.json new file mode 100644 index 0000000000..6bb99f6fa8 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32a403a_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32a403a_cmsis_driver", + "description": "AT32 A4 CMSIS driver package", + "description_zh": "AT32 A4 CMSIS 驱动包", + "enable": "PKG_USING_AT32A403A_CMSIS_DRIVER", + "keywords": [ + "at32a403a_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32A403A_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32A403A_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32A403A_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32a403a_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32a403a_hal_driver/Kconfig new file mode 100644 index 0000000000..481abd769c --- /dev/null +++ b/peripherals/hal-sdk/at32/at32a403a_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32a403a_hal_driver +menuconfig PKG_USING_AT32A403A_HAL_DRIVER + bool "AT32A403A HAL driver package" + select PKG_USING_AT32A403A_CMSIS_DRIVER + default n + +if PKG_USING_AT32A403A_HAL_DRIVER + + config PKG_AT32A403A_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32a403a_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32A403A_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32A403A_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32A403A_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32a403a_hal_driver/package.json b/peripherals/hal-sdk/at32/at32a403a_hal_driver/package.json new file mode 100644 index 0000000000..b418ceaf9d --- /dev/null +++ b/peripherals/hal-sdk/at32/at32a403a_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32a403a_hal_driver", + "description": "AT32 A4 HAL driver package", + "description_zh": "AT32 A4 HAL 驱动包", + "enable": "PKG_USING_AT32A403A_HAL_DRIVER", + "keywords": [ + "at32a403a_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32A403A_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32A403A_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32A403A_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32a423_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32a423_cmsis_driver/Kconfig new file mode 100644 index 0000000000..65659d7a77 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32a423_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32a423_cmsis_driver +menuconfig PKG_USING_AT32A423_CMSIS_DRIVER + bool "AT32A423 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32A423_CMSIS_DRIVER + + config PKG_AT32A423_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32a423_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32A423_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32A423_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32A423_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32a423_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32a423_cmsis_driver/package.json new file mode 100644 index 0000000000..84c3a4fe3e --- /dev/null +++ b/peripherals/hal-sdk/at32/at32a423_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32a423_cmsis_driver", + "description": "AT32 A4 CMSIS driver package", + "description_zh": "AT32 A4 CMSIS 驱动包", + "enable": "PKG_USING_AT32A423_CMSIS_DRIVER", + "keywords": [ + "at32a423_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32A423_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32A423_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32A423_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32a423_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32a423_hal_driver/Kconfig new file mode 100644 index 0000000000..cca2511ff3 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32a423_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32a423_hal_driver +menuconfig PKG_USING_AT32A423_HAL_DRIVER + bool "AT32A423 HAL driver package" + select PKG_USING_AT32A423_CMSIS_DRIVER + default n + +if PKG_USING_AT32A423_HAL_DRIVER + + config PKG_AT32A423_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32a423_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32A423_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32A423_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32A423_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32a423_hal_driver/package.json b/peripherals/hal-sdk/at32/at32a423_hal_driver/package.json new file mode 100644 index 0000000000..a91387dfe3 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32a423_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32a423_hal_driver", + "description": "AT32 A4 HAL driver package", + "description_zh": "AT32 A4 HAL 驱动包", + "enable": "PKG_USING_AT32A423_HAL_DRIVER", + "keywords": [ + "at32a423_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32A423_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32A423_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32A423_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f402_405_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32f402_405_cmsis_driver/Kconfig new file mode 100644 index 0000000000..f242b470d0 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f402_405_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32f402_405_cmsis_driver +menuconfig PKG_USING_AT32F402_405_CMSIS_DRIVER + bool "AT32F402_405 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32F402_405_CMSIS_DRIVER + + config PKG_AT32F402_405_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f402_405_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F402_405_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F402_405_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32F402_405_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32f402_405_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32f402_405_cmsis_driver/package.json new file mode 100644 index 0000000000..d94e8d1909 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f402_405_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f402_405_cmsis_driver", + "description": "AT32 F4 CMSIS driver package", + "description_zh": "AT32 F4 CMSIS 驱动包", + "enable": "PKG_USING_AT32F402_405_CMSIS_DRIVER", + "keywords": [ + "at32f402_405_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F402_405_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F402_405_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F402_405_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f402_405_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32f402_405_hal_driver/Kconfig new file mode 100644 index 0000000000..fabbacd440 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f402_405_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32f402_405_hal_driver +menuconfig PKG_USING_AT32F402_405_HAL_DRIVER + bool "AT32F402_405 HAL driver package" + select PKG_USING_AT32F402_405_CMSIS_DRIVER + default n + +if PKG_USING_AT32F402_405_HAL_DRIVER + + config PKG_AT32F402_405_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f402_405_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F402_405_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F402_405_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32F402_405_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32f402_405_hal_driver/package.json b/peripherals/hal-sdk/at32/at32f402_405_hal_driver/package.json new file mode 100644 index 0000000000..87ac5babcd --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f402_405_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f402_405_hal_driver", + "description": "AT32 F4 HAL driver package", + "description_zh": "AT32 F4 HAL 驱动包", + "enable": "PKG_USING_AT32F402_405_HAL_DRIVER", + "keywords": [ + "at32f402_405_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F402_405_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F402_405_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F402_405_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f403a_407_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32f403a_407_cmsis_driver/Kconfig new file mode 100644 index 0000000000..db16de424f --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f403a_407_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32f403a_407_cmsis_driver +menuconfig PKG_USING_AT32F403A_407_CMSIS_DRIVER + bool "AT32F403A_407 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32F403A_407_CMSIS_DRIVER + + config PKG_AT32F403A_407_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f403a_407_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F403A_407_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F403A_407_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32F403A_407_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32f403a_407_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32f403a_407_cmsis_driver/package.json new file mode 100644 index 0000000000..67818b7cc2 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f403a_407_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f403a_407_cmsis_driver", + "description": "AT32 F4 CMSIS driver package", + "description_zh": "AT32 F4 CMSIS 驱动包", + "enable": "PKG_USING_AT32F403A_407_CMSIS_DRIVER", + "keywords": [ + "at32f403a_407_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F403A_407_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F403A_407_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F403A_407_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f403a_407_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32f403a_407_hal_driver/Kconfig new file mode 100644 index 0000000000..fa1a348fbf --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f403a_407_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32f403a_407_hal_driver +menuconfig PKG_USING_AT32F403A_407_HAL_DRIVER + bool "AT32F403A_407 HAL driver package" + select PKG_USING_AT32F403A_407_CMSIS_DRIVER + default n + +if PKG_USING_AT32F403A_407_HAL_DRIVER + + config PKG_AT32F403A_407_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f403a_407_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F403A_407_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F403A_407_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32F403A_407_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32f403a_407_hal_driver/package.json b/peripherals/hal-sdk/at32/at32f403a_407_hal_driver/package.json new file mode 100644 index 0000000000..6c5d00af16 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f403a_407_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f403a_407_hal_driver", + "description": "AT32 F4 HAL driver package", + "description_zh": "AT32 F4 HAL 驱动包", + "enable": "PKG_USING_AT32F403A_407_HAL_DRIVER", + "keywords": [ + "at32f403a_407_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F403A_407_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F403A_407_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F403A_407_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f413_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32f413_cmsis_driver/Kconfig new file mode 100644 index 0000000000..e81e89368e --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f413_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32f413_cmsis_driver +menuconfig PKG_USING_AT32F413_CMSIS_DRIVER + bool "AT32F413 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32F413_CMSIS_DRIVER + + config PKG_AT32F413_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f413_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F413_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F413_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32F413_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32f413_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32f413_cmsis_driver/package.json new file mode 100644 index 0000000000..a1aebd3d61 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f413_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f413_cmsis_driver", + "description": "AT32 F4 CMSIS driver package", + "description_zh": "AT32 F4 CMSIS 驱动包", + "enable": "PKG_USING_AT32F413_CMSIS_DRIVER", + "keywords": [ + "at32f413_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F413_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F413_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F413_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f413_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32f413_hal_driver/Kconfig new file mode 100644 index 0000000000..af15786541 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f413_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32f413_hal_driver +menuconfig PKG_USING_AT32F413_HAL_DRIVER + bool "AT32F413 HAL driver package" + select PKG_USING_AT32F413_CMSIS_DRIVER + default n + +if PKG_USING_AT32F413_HAL_DRIVER + + config PKG_AT32F413_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f413_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F413_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F413_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32F413_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32f413_hal_driver/package.json b/peripherals/hal-sdk/at32/at32f413_hal_driver/package.json new file mode 100644 index 0000000000..7ba82ce5a3 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f413_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f413_hal_driver", + "description": "AT32 F4 HAL driver package", + "description_zh": "AT32 F4 HAL 驱动包", + "enable": "PKG_USING_AT32F413_HAL_DRIVER", + "keywords": [ + "at32f413_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F413_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F413_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F413_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f415_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32f415_cmsis_driver/Kconfig new file mode 100644 index 0000000000..7d9be64018 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f415_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32f415_cmsis_driver +menuconfig PKG_USING_AT32F415_CMSIS_DRIVER + bool "AT32F415 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32F415_CMSIS_DRIVER + + config PKG_AT32F415_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f415_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F415_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F415_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32F415_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32f415_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32f415_cmsis_driver/package.json new file mode 100644 index 0000000000..c91cb2132e --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f415_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f415_cmsis_driver", + "description": "AT32 F4 CMSIS driver package", + "description_zh": "AT32 F4 CMSIS 驱动包", + "enable": "PKG_USING_AT32F415_CMSIS_DRIVER", + "keywords": [ + "at32f415_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F415_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F415_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F415_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f415_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32f415_hal_driver/Kconfig new file mode 100644 index 0000000000..9b1ecca420 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f415_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32f415_hal_driver +menuconfig PKG_USING_AT32F415_HAL_DRIVER + bool "AT32F415 HAL driver package" + select PKG_USING_AT32F415_CMSIS_DRIVER + default n + +if PKG_USING_AT32F415_HAL_DRIVER + + config PKG_AT32F415_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f415_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F415_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F415_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32F415_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32f415_hal_driver/package.json b/peripherals/hal-sdk/at32/at32f415_hal_driver/package.json new file mode 100644 index 0000000000..b5034156ca --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f415_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f415_hal_driver", + "description": "AT32 F4 HAL driver package", + "description_zh": "AT32 F4 HAL 驱动包", + "enable": "PKG_USING_AT32F415_HAL_DRIVER", + "keywords": [ + "at32f415_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F415_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F415_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F415_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f421_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32f421_cmsis_driver/Kconfig new file mode 100644 index 0000000000..d515789ff1 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f421_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32f421_cmsis_driver +menuconfig PKG_USING_AT32F421_CMSIS_DRIVER + bool "AT32F421 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32F421_CMSIS_DRIVER + + config PKG_AT32F421_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f421_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F421_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F421_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32F421_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32f421_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32f421_cmsis_driver/package.json new file mode 100644 index 0000000000..d5d49222d1 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f421_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f421_cmsis_driver", + "description": "AT32 F4 CMSIS driver package", + "description_zh": "AT32 F4 CMSIS 驱动包", + "enable": "PKG_USING_AT32F421_CMSIS_DRIVER", + "keywords": [ + "at32f421_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F421_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F421_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F421_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f421_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32f421_hal_driver/Kconfig new file mode 100644 index 0000000000..39cda1201c --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f421_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32f421_hal_driver +menuconfig PKG_USING_AT32F421_HAL_DRIVER + bool "AT32F421 HAL driver package" + select PKG_USING_AT32F421_CMSIS_DRIVER + default n + +if PKG_USING_AT32F421_HAL_DRIVER + + config PKG_AT32F421_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f421_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F421_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F421_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32F421_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32f421_hal_driver/package.json b/peripherals/hal-sdk/at32/at32f421_hal_driver/package.json new file mode 100644 index 0000000000..4bb01eaf08 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f421_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f421_hal_driver", + "description": "AT32 F4 HAL driver package", + "description_zh": "AT32 F4 HAL 驱动包", + "enable": "PKG_USING_AT32F421_HAL_DRIVER", + "keywords": [ + "at32f421_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F421_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F421_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F421_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f423_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32f423_cmsis_driver/Kconfig new file mode 100644 index 0000000000..bbded26757 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f423_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32f423_cmsis_driver +menuconfig PKG_USING_AT32F423_CMSIS_DRIVER + bool "AT32F423 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32F423_CMSIS_DRIVER + + config PKG_AT32F423_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f423_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F423_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F423_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32F423_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32f423_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32f423_cmsis_driver/package.json new file mode 100644 index 0000000000..dbdc0c150f --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f423_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f423_cmsis_driver", + "description": "AT32 F4 CMSIS driver package", + "description_zh": "AT32 F4 CMSIS 驱动包", + "enable": "PKG_USING_AT32F423_CMSIS_DRIVER", + "keywords": [ + "at32f423_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F423_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F423_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F423_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f423_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32f423_hal_driver/Kconfig new file mode 100644 index 0000000000..9d157a6bba --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f423_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32f423_hal_driver +menuconfig PKG_USING_AT32F423_HAL_DRIVER + bool "AT32F423 HAL driver package" + select PKG_USING_AT32F423_CMSIS_DRIVER + default n + +if PKG_USING_AT32F423_HAL_DRIVER + + config PKG_AT32F423_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f423_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F423_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F423_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32F423_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32f423_hal_driver/package.json b/peripherals/hal-sdk/at32/at32f423_hal_driver/package.json new file mode 100644 index 0000000000..06e2c02ee8 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f423_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f423_hal_driver", + "description": "AT32 F4 HAL driver package", + "description_zh": "AT32 F4 HAL 驱动包", + "enable": "PKG_USING_AT32F423_HAL_DRIVER", + "keywords": [ + "at32f423_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F423_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F423_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F423_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f425_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32f425_cmsis_driver/Kconfig new file mode 100644 index 0000000000..a830a95b18 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f425_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32f425_cmsis_driver +menuconfig PKG_USING_AT32F425_CMSIS_DRIVER + bool "AT32F425 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32F425_CMSIS_DRIVER + + config PKG_AT32F425_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f425_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F425_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F425_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32F425_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32f425_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32f425_cmsis_driver/package.json new file mode 100644 index 0000000000..10edae94a0 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f425_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f425_cmsis_driver", + "description": "AT32 F4 CMSIS driver package", + "description_zh": "AT32 F4 CMSIS 驱动包", + "enable": "PKG_USING_AT32F425_CMSIS_DRIVER", + "keywords": [ + "at32f425_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F425_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F425_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F425_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f425_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32f425_hal_driver/Kconfig new file mode 100644 index 0000000000..2bcda237c4 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f425_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32f425_hal_driver +menuconfig PKG_USING_AT32F425_HAL_DRIVER + bool "AT32F425 HAL driver package" + select PKG_USING_AT32F425_CMSIS_DRIVER + default n + +if PKG_USING_AT32F425_HAL_DRIVER + + config PKG_AT32F425_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f425_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F425_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F425_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32F425_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32f425_hal_driver/package.json b/peripherals/hal-sdk/at32/at32f425_hal_driver/package.json new file mode 100644 index 0000000000..4f9e4d485f --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f425_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f425_hal_driver", + "description": "AT32 F4 HAL driver package", + "description_zh": "AT32 F4 HAL 驱动包", + "enable": "PKG_USING_AT32F425_HAL_DRIVER", + "keywords": [ + "at32f425_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F425_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F425_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F425_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f435_437_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32f435_437_cmsis_driver/Kconfig new file mode 100644 index 0000000000..ed6df0dd4d --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f435_437_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32f435_437_cmsis_driver +menuconfig PKG_USING_AT32F435_437_CMSIS_DRIVER + bool "AT32F435_437 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32F435_437_CMSIS_DRIVER + + config PKG_AT32F435_437_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f435_437_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F435_437_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F435_437_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32F435_437_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32f435_437_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32f435_437_cmsis_driver/package.json new file mode 100644 index 0000000000..b6e0f1995f --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f435_437_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f435_437_cmsis_driver", + "description": "AT32 F4 CMSIS driver package", + "description_zh": "AT32 F4 CMSIS 驱动包", + "enable": "PKG_USING_AT32F435_437_CMSIS_DRIVER", + "keywords": [ + "at32f435_437_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F435_437_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F435_437_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F435_437_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f435_437_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32f435_437_hal_driver/Kconfig new file mode 100644 index 0000000000..b432ab1bcf --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f435_437_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32f435_437_hal_driver +menuconfig PKG_USING_AT32F435_437_HAL_DRIVER + bool "AT32F435_437 HAL driver package" + select PKG_USING_AT32F435_437_CMSIS_DRIVER + default n + +if PKG_USING_AT32F435_437_HAL_DRIVER + + config PKG_AT32F435_437_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f435_437_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F435_437_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F435_437_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32F435_437_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32f435_437_hal_driver/package.json b/peripherals/hal-sdk/at32/at32f435_437_hal_driver/package.json new file mode 100644 index 0000000000..5656cebe4d --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f435_437_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f435_437_hal_driver", + "description": "AT32 F4 HAL driver package", + "description_zh": "AT32 F4 HAL 驱动包", + "enable": "PKG_USING_AT32F435_437_HAL_DRIVER", + "keywords": [ + "at32f435_437_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F435_437_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F435_437_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F435_437_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f45x_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32f45x_cmsis_driver/Kconfig new file mode 100644 index 0000000000..731f4db334 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f45x_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32f45x_cmsis_driver +menuconfig PKG_USING_AT32F45x_CMSIS_DRIVER + bool "AT32F455_456_457 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32F45x_CMSIS_DRIVER + + config PKG_AT32F45x_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f45x_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F45x_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F45x_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32F45x_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32f45x_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32f45x_cmsis_driver/package.json new file mode 100644 index 0000000000..cf36f21a9e --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f45x_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f45x_cmsis_driver", + "description": "AT32 F4 CMSIS driver package", + "description_zh": "AT32 F4 CMSIS 驱动包", + "enable": "PKG_USING_AT32F45x_CMSIS_DRIVER", + "keywords": [ + "at32f45x_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F45x_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F45x_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F45x_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32f45x_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32f45x_hal_driver/Kconfig new file mode 100644 index 0000000000..1f6cd19fa0 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f45x_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32f45x_hal_driver +menuconfig PKG_USING_AT32F45x_HAL_DRIVER + bool "AT32F455_456_457 HAL driver package" + select PKG_USING_AT32F45x_CMSIS_DRIVER + default n + +if PKG_USING_AT32F45x_HAL_DRIVER + + config PKG_AT32F45x_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32f45x_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32F45x_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32F45x_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32F45x_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32f45x_hal_driver/package.json b/peripherals/hal-sdk/at32/at32f45x_hal_driver/package.json new file mode 100644 index 0000000000..f972befc40 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32f45x_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32f45x_hal_driver", + "description": "AT32 F4 HAL driver package", + "description_zh": "AT32 F4 HAL 驱动包", + "enable": "PKG_USING_AT32F45x_HAL_DRIVER", + "keywords": [ + "at32f45x_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32F45x_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32F45x_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32F45x_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32m412_416_cmsis_driver/Kconfig b/peripherals/hal-sdk/at32/at32m412_416_cmsis_driver/Kconfig new file mode 100644 index 0000000000..c0f8d3c771 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32m412_416_cmsis_driver/Kconfig @@ -0,0 +1,28 @@ + +# Kconfig file for package at32m412_416_cmsis_driver +menuconfig PKG_USING_AT32M412_416_CMSIS_DRIVER + bool "AT32M412_416 CMSIS driver package" + select PKG_USING_CMSIS_CORE + default n + +if PKG_USING_AT32M412_416_CMSIS_DRIVER + + config PKG_AT32M412_416_CMSIS_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32m412_416_cmsis_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32M412_416_CMSIS_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32M412_416_CMSIS_DRIVER_VER + string + default "latest" if PKG_USING_AT32M412_416_CMSIS_DRIVER_LATEST_VERSION + +endif + diff --git a/peripherals/hal-sdk/at32/at32m412_416_cmsis_driver/package.json b/peripherals/hal-sdk/at32/at32m412_416_cmsis_driver/package.json new file mode 100644 index 0000000000..b1003ee504 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32m412_416_cmsis_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32m412_416_cmsis_driver", + "description": "AT32 M4 CMSIS driver package", + "description_zh": "AT32 M4 CMSIS 驱动包", + "enable": "PKG_USING_AT32M412_416_CMSIS_DRIVER", + "keywords": [ + "at32m412_416_cmsis_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32M412_416_CMSIS_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32M412_416_CMSIS_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32M412_416_CMSIS_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +} diff --git a/peripherals/hal-sdk/at32/at32m412_416_hal_driver/Kconfig b/peripherals/hal-sdk/at32/at32m412_416_hal_driver/Kconfig new file mode 100644 index 0000000000..d811cb9314 --- /dev/null +++ b/peripherals/hal-sdk/at32/at32m412_416_hal_driver/Kconfig @@ -0,0 +1,27 @@ + +# Kconfig file for package at32m412_416_hal_driver +menuconfig PKG_USING_AT32M412_416_HAL_DRIVER + bool "AT32M412_416 HAL driver package" + select PKG_USING_AT32M412_416_CMSIS_DRIVER + default n + +if PKG_USING_AT32M412_416_HAL_DRIVER + + config PKG_AT32M412_416_HAL_DRIVER_PATH + string + default "/packages/peripherals/hal-sdk/at32/at32m412_416_hal_driver" + + choice + prompt "Version" + help + Select the package version + + config PKG_USING_AT32M412_416_HAL_DRIVER_LATEST_VERSION + bool "latest" + endchoice + + config PKG_AT32M412_416_HAL_DRIVER_VER + string + default "latest" if PKG_USING_AT32M412_416_HAL_DRIVER_LATEST_VERSION + +endif diff --git a/peripherals/hal-sdk/at32/at32m412_416_hal_driver/package.json b/peripherals/hal-sdk/at32/at32m412_416_hal_driver/package.json new file mode 100644 index 0000000000..402945796f --- /dev/null +++ b/peripherals/hal-sdk/at32/at32m412_416_hal_driver/package.json @@ -0,0 +1,29 @@ +{ + "name": "at32m412_416_hal_driver", + "description": "AT32 M4 HAL driver package", + "description_zh": "AT32 M4 HAL 驱动包", + "enable": "PKG_USING_AT32M412_416_HAL_DRIVER", + "keywords": [ + "at32m412_416_hal_driver", + "AT32" + ], + "category": "peripherals", + "author": { + "name": "sheltonyu", + "email": "xxx@xxx.com", + "github": "sheltonyu" + }, + "license": "BSD-3-Clause", + "repository": "https://github.com/sheltonyu/AT32M412_416_HAL_Driver", + "icon": "unknown", + "homepage": "https://github.com/sheltonyu/AT32M412_416_HAL_Driver", + "doc": "unknown", + "site": [ + { + "version": "latest", + "URL": "https://github.com/sheltonyu/AT32M412_416_HAL_Driver.git", + "filename": "", + "VER_SHA": "main" + } + ] +}