Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions peripherals/hal-sdk/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
28 changes: 28 additions & 0 deletions peripherals/hal-sdk/at32/Kconfig
Original file line number Diff line number Diff line change
@@ -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
28 changes: 28 additions & 0 deletions peripherals/hal-sdk/at32/at32a403a_cmsis_driver/Kconfig
Original file line number Diff line number Diff line change
@@ -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

29 changes: 29 additions & 0 deletions peripherals/hal-sdk/at32/at32a403a_cmsis_driver/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
"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"
}
]
}
27 changes: 27 additions & 0 deletions peripherals/hal-sdk/at32/at32a403a_hal_driver/Kconfig
Original file line number Diff line number Diff line change
@@ -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
29 changes: 29 additions & 0 deletions peripherals/hal-sdk/at32/at32a403a_hal_driver/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
"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"
}
]
}
28 changes: 28 additions & 0 deletions peripherals/hal-sdk/at32/at32a423_cmsis_driver/Kconfig
Original file line number Diff line number Diff line change
@@ -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

29 changes: 29 additions & 0 deletions peripherals/hal-sdk/at32/at32a423_cmsis_driver/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
"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"
}
]
}
27 changes: 27 additions & 0 deletions peripherals/hal-sdk/at32/at32a423_hal_driver/Kconfig
Original file line number Diff line number Diff line change
@@ -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
29 changes: 29 additions & 0 deletions peripherals/hal-sdk/at32/at32a423_hal_driver/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
"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"
}
]
}
28 changes: 28 additions & 0 deletions peripherals/hal-sdk/at32/at32f402_405_cmsis_driver/Kconfig
Original file line number Diff line number Diff line change
@@ -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

29 changes: 29 additions & 0 deletions peripherals/hal-sdk/at32/at32f402_405_cmsis_driver/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
"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"
}
]
}
27 changes: 27 additions & 0 deletions peripherals/hal-sdk/at32/at32f402_405_hal_driver/Kconfig
Original file line number Diff line number Diff line change
@@ -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
29 changes: 29 additions & 0 deletions peripherals/hal-sdk/at32/at32f402_405_hal_driver/package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]",
"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"
}
]
}
Loading
Loading