Skip to content
Open
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
2 changes: 1 addition & 1 deletion peripherals/hal-sdk/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ source "$PKGS_DIR/packages/peripherals/hal-sdk/nrfx/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/nuclei_sdk/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/raspberrypi-pico-rp2350-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/mm32/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/wch/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/at32/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/hc32/Kconfig"
Expand Down
17 changes: 17 additions & 0 deletions peripherals/hal-sdk/mm32/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
menu "MM32 HAL & SDK Drivers"

# MM32 CMSIS
source "$PKGS_DIR/packages/peripherals/hal-sdk/mm32/mm32f103xx-cmsis/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/mm32/mm32f3270x-cmsis/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/mm32/mm32f5260x-cmsis/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/mm32/mm32l0xx-cmsis/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/mm32/mm32l3xx-cmsis/Kconfig"

# MM32 HAL
source "$PKGS_DIR/packages/peripherals/hal-sdk/mm32/mm32f103xx-hal-driver/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/mm32/mm32f3270x-hal-driver/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/mm32/mm32f5260x-hal-driver/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/mm32/mm32l0xx-hal-driver/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/mm32/mm32l3xx-hal-driver/Kconfig"

endmenu
26 changes: 26 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f103xx-cmsis/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Kconfig file for package mm32f103xx-cmsis
menuconfig PKG_USING_MM32F103XX_CMSIS
bool "MM32F103xx CMSIS package"
select PKG_USING_CMSIS_CORE
default n

if PKG_USING_MM32F103XX_CMSIS

config PKG_MM32F103XX_CMSIS_PATH
string
default "/packages/peripherals/hal-sdk/mm32/mm32f103xx-cmsis"

choice
prompt "Version"
help
Select the package version

config PKG_USING_MM32F103XX_CMSIS_LATEST_VERSION
bool "latest"
endchoice

config PKG_MM32F103XX_CMSIS_VER
string
default "latest" if PKG_USING_MM32F103XX_CMSIS_LATEST_VERSION

endif
30 changes: 30 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f103xx-cmsis/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "mm32f103xx-cmsis",
"description": "MM32F103xx CMSIS package",
"description_zh": "MM32F103xx CMSIS 软件包",
"enable": "PKG_USING_MM32F103XX_CMSIS",
"keywords": [
"mm32f103xx-cmsis",
"MM32",
"CMSIS"
],
"category": "peripherals",
"author": {
"name": "RT-Thread-packages",
"email": "package_team@rt-thread.com",
"github": "RT-Thread-packages"
},
"license": "Apache-2.0",
"repository": "https://github.com/RT-Thread-packages/mm32f103xx-cmsis",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/mm32f103xx-cmsis#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/mm32f103xx-cmsis.git",
"filename": "",
"VER_SHA": "master"
}
]
}
26 changes: 26 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f103xx-hal-driver/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Kconfig file for package mm32f103xx-hal-driver
menuconfig PKG_USING_MM32F103XX_HAL_DRIVER
bool "MM32F103xx HAL driver package"
select PKG_USING_MM32F103XX_CMSIS
default n

if PKG_USING_MM32F103XX_HAL_DRIVER

config PKG_MM32F103XX_HAL_DRIVER_PATH
string
default "/packages/peripherals/hal-sdk/mm32/mm32f103xx-hal-driver"

choice
prompt "Version"
help
Select the package version

config PKG_USING_MM32F103XX_HAL_DRIVER_LATEST_VERSION
bool "latest"
endchoice

config PKG_MM32F103XX_HAL_DRIVER_VER
string
default "latest" if PKG_USING_MM32F103XX_HAL_DRIVER_LATEST_VERSION

endif
30 changes: 30 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f103xx-hal-driver/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "mm32f103xx-hal-driver",
"description": "MM32F103xx HAL driver package",
"description_zh": "MM32F103xx HAL 驱动包",
"enable": "PKG_USING_MM32F103XX_HAL_DRIVER",
"keywords": [
"mm32f103xx-hal-driver",
"MM32",
"HAL"
],
"category": "peripherals",
"author": {
"name": "RT-Thread-packages",
"email": "package_team@rt-thread.com",
"github": "RT-Thread-packages"
},
"license": "Apache-2.0",
"repository": "https://github.com/RT-Thread-packages/mm32f103xx-hal-driver",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/mm32f103xx-hal-driver#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/mm32f103xx-hal-driver.git",
"filename": "",
"VER_SHA": "master"
}
]
}
26 changes: 26 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f3270x-cmsis/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Kconfig file for package mm32f3270x-cmsis
menuconfig PKG_USING_MM32F3270X_CMSIS
bool "MM32F3270x CMSIS package"
select PKG_USING_CMSIS_CORE
default n

if PKG_USING_MM32F3270X_CMSIS

config PKG_MM32F3270X_CMSIS_PATH
string
default "/packages/peripherals/hal-sdk/mm32/mm32f3270x-cmsis"

choice
prompt "Version"
help
Select the package version

config PKG_USING_MM32F3270X_CMSIS_LATEST_VERSION
bool "latest"
endchoice

config PKG_MM32F3270X_CMSIS_VER
string
default "latest" if PKG_USING_MM32F3270X_CMSIS_LATEST_VERSION

endif
30 changes: 30 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f3270x-cmsis/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "mm32f3270x-cmsis",
"description": "MM32F3270x CMSIS package",
"description_zh": "MM32F3270x CMSIS 软件包",
"enable": "PKG_USING_MM32F3270X_CMSIS",
"keywords": [
"mm32f3270x-cmsis",
"MM32",
"CMSIS"
],
"category": "peripherals",
"author": {
"name": "RT-Thread-packages",
"email": "package_team@rt-thread.com",
"github": "RT-Thread-packages"
},
"license": "Apache-2.0",
"repository": "https://github.com/RT-Thread-packages/mm32f3270x-cmsis",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/mm32f3270x-cmsis#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/mm32f3270x-cmsis.git",
"filename": "",
"VER_SHA": "master"
}
]
}
26 changes: 26 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f3270x-hal-driver/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Kconfig file for package mm32f3270x-hal-driver
menuconfig PKG_USING_MM32F3270X_HAL_DRIVER
bool "MM32F3270x HAL driver package"
select PKG_USING_MM32F3270X_CMSIS
default n

if PKG_USING_MM32F3270X_HAL_DRIVER

config PKG_MM32F3270X_HAL_DRIVER_PATH
string
default "/packages/peripherals/hal-sdk/mm32/mm32f3270x-hal-driver"

choice
prompt "Version"
help
Select the package version

config PKG_USING_MM32F3270X_HAL_DRIVER_LATEST_VERSION
bool "latest"
endchoice

config PKG_MM32F3270X_HAL_DRIVER_VER
string
default "latest" if PKG_USING_MM32F3270X_HAL_DRIVER_LATEST_VERSION

endif
30 changes: 30 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f3270x-hal-driver/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "mm32f3270x-hal-driver",
"description": "MM32F3270x HAL driver package",
"description_zh": "MM32F3270x HAL 驱动包",
"enable": "PKG_USING_MM32F3270X_HAL_DRIVER",
"keywords": [
"mm32f3270x-hal-driver",
"MM32",
"HAL"
],
"category": "peripherals",
"author": {
"name": "RT-Thread-packages",
"email": "package_team@rt-thread.com",
"github": "RT-Thread-packages"
},
"license": "Apache-2.0",
"repository": "https://github.com/RT-Thread-packages/mm32f3270x-hal-driver",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/mm32f3270x-hal-driver#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/mm32f3270x-hal-driver.git",
"filename": "",
"VER_SHA": "master"
}
]
}
26 changes: 26 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f5260x-cmsis/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Kconfig file for package mm32f5260x-cmsis
menuconfig PKG_USING_MM32F5260X_CMSIS
bool "MM32F5260x CMSIS package"
select PKG_USING_CMSIS_CORE
default n

if PKG_USING_MM32F5260X_CMSIS

config PKG_MM32F5260X_CMSIS_PATH
string
default "/packages/peripherals/hal-sdk/mm32/mm32f5260x-cmsis"

choice
prompt "Version"
help
Select the package version

config PKG_USING_MM32F5260X_CMSIS_LATEST_VERSION
bool "latest"
endchoice

config PKG_MM32F5260X_CMSIS_VER
string
default "latest" if PKG_USING_MM32F5260X_CMSIS_LATEST_VERSION

endif
30 changes: 30 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f5260x-cmsis/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "mm32f5260x-cmsis",
"description": "MM32F5260x CMSIS package",
"description_zh": "MM32F5260x CMSIS 软件包",
"enable": "PKG_USING_MM32F5260X_CMSIS",
"keywords": [
"mm32f5260x-cmsis",
"MM32",
"CMSIS"
],
"category": "peripherals",
"author": {
"name": "RT-Thread-packages",
"email": "package_team@rt-thread.com",
"github": "RT-Thread-packages"
},
"license": "Apache-2.0",
"repository": "https://github.com/RT-Thread-packages/mm32f5260x-cmsis",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/mm32f5260x-cmsis#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/mm32f5260x-cmsis.git",
"filename": "",
"VER_SHA": "master"
}
]
}
26 changes: 26 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f5260x-hal-driver/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Kconfig file for package mm32f5260x-hal-driver
menuconfig PKG_USING_MM32F5260X_HAL_DRIVER
bool "MM32F5260x HAL driver package"
select PKG_USING_MM32F5260X_CMSIS
default n

if PKG_USING_MM32F5260X_HAL_DRIVER

config PKG_MM32F5260X_HAL_DRIVER_PATH
string
default "/packages/peripherals/hal-sdk/mm32/mm32f5260x-hal-driver"

choice
prompt "Version"
help
Select the package version

config PKG_USING_MM32F5260X_HAL_DRIVER_LATEST_VERSION
bool "latest"
endchoice

config PKG_MM32F5260X_HAL_DRIVER_VER
string
default "latest" if PKG_USING_MM32F5260X_HAL_DRIVER_LATEST_VERSION

endif
30 changes: 30 additions & 0 deletions peripherals/hal-sdk/mm32/mm32f5260x-hal-driver/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "mm32f5260x-hal-driver",
"description": "MM32F5260x HAL driver package",
"description_zh": "MM32F5260x HAL 驱动包",
"enable": "PKG_USING_MM32F5260X_HAL_DRIVER",
"keywords": [
"mm32f5260x-hal-driver",
"MM32",
"HAL"
],
"category": "peripherals",
"author": {
"name": "RT-Thread-packages",
"email": "package_team@rt-thread.com",
"github": "RT-Thread-packages"
},
"license": "Apache-2.0",
"repository": "https://github.com/RT-Thread-packages/mm32f5260x-hal-driver",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/mm32f5260x-hal-driver#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/mm32f5260x-hal-driver.git",
"filename": "",
"VER_SHA": "master"
}
]
}
Loading
Loading