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 @@ -15,4 +15,5 @@ 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"
source "$PKGS_DIR/packages/peripherals/hal-sdk/nxp/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/nuvoton/Kconfig"
endmenu
10 changes: 3 additions & 7 deletions peripherals/hal-sdk/hc32/Kconfig
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
menu "HC32 DDL Drivers"

if SOC_HC32F4A8SI
source "$PKGS_DIR/packages/peripherals/hal-sdk/hc32/hc32f4a8_ddl/Kconfig"
endif

if SOC_HC32F334KA
source "$PKGS_DIR/packages/peripherals/hal-sdk/hc32/hc32f334_ddl/Kconfig"
endif
#HC32F4
source "$PKGS_DIR/packages/peripherals/hal-sdk/hc32/hc32_f4_cmsis/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/hc32/hc32_f4_series/Kconfig"

endmenu
27 changes: 27 additions & 0 deletions peripherals/hal-sdk/hc32/hc32_f4_cmsis/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

# Kconfig file for package HC32F4_cmsis_driver
menuconfig PKG_USING_HC32F4_CMSIS_DRIVER
bool "HC32F4 CMSIS DRIVER PACKAGE"
default n

if PKG_USING_HC32F4_CMSIS_DRIVER

config PKG_HC32F4_CMSIS_DRIVER_PATH
string
default "/packages/peripherals/hal-sdk/hc32/hc32_f4_cmsis"

choice
prompt "Version"
help
Select the package version

config PKG_USING_HC32F4_CMSIS_DRIVER_LATEST_VERSION
bool "latest"
endchoice

config PKG_HC32F4_CMSIS_DRIVER_VER
string
default "latest" if PKG_USING_HC32F4_CMSIS_DRIVER_LATEST_VERSION

endif

28 changes: 28 additions & 0 deletions peripherals/hal-sdk/hc32/hc32_f4_cmsis/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "hc32-f4-cmsis",
"description": "HC32F4 CMSIS DRIVER PACKAGE",
"description_zh": "HC32F4 CMSIS 驱动包",
"enable": "PKG_USING_HC32F4_CMSIS_DRIVER",
"keywords": [
"hc32-f4-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/hc32-f4-cmsis",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/hc32-f4-cmsis#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/hc32-f4-cmsis.git",
"filename": "",
"VER_SHA": "master"
}
]
}
28 changes: 28 additions & 0 deletions peripherals/hal-sdk/hc32/hc32_f4_series/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

# Kconfig file for package hc32f4_series_driver
menuconfig PKG_USING_HC32F4_SERIES_DRIVER
bool "HC32F4 SERIES DRIVER PACKAGE"
select PKG_USING_HC32F4_CMSIS_DRIVER
default n

if PKG_USING_HC32F4_SERIES_DRIVER

config PKG_HC32F4_SERIES_DRIVER_PATH
string
default "/packages/peripherals/hal-sdk/hc32/hc32_f4_series"

choice
prompt "Version"
help
Select the package version

config PKG_USING_HC32F4_SERIES_DRIVER_LATEST_VERSION
bool "latest"
endchoice

config PKG_HC32F4_SERIES_DRIVER_VER
string
default "latest" if PKG_USING_HC32F4_SERIES_DRIVER_LATEST_VERSION

endif

28 changes: 28 additions & 0 deletions peripherals/hal-sdk/hc32/hc32_f4_series/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "hc32-f4-series",
"description": "HC32F4 SERIES DRIVER PACKAGE",
"description_zh": "HC32F4 SERIES 驱动包",
"enable": "PKG_USING_HC32F4_SERIES_DRIVER",
"keywords": [
"hc32-f4-series"
],
"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/hc32-f4-series",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/hc32-f4-series#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/hc32-f4-series.git",
"filename": "",
"VER_SHA": "master"
}
]
}
26 changes: 0 additions & 26 deletions peripherals/hal-sdk/hc32/hc32f334_ddl/Kconfig

This file was deleted.

29 changes: 0 additions & 29 deletions peripherals/hal-sdk/hc32/hc32f334_ddl/package.json

This file was deleted.

26 changes: 0 additions & 26 deletions peripherals/hal-sdk/hc32/hc32f4a8_ddl/Kconfig

This file was deleted.

29 changes: 0 additions & 29 deletions peripherals/hal-sdk/hc32/hc32f4a8_ddl/package.json

This file was deleted.

10 changes: 10 additions & 0 deletions peripherals/hal-sdk/nuvoton/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
menu "NUVOTON Drivers"

#nuvoton
source "$PKGS_DIR/packages/peripherals/hal-sdk/nuvoton/nuvoton_cmsis/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/nuvoton/nuvoton_series/Kconfig"

#nuvoton-arm926
source "$PKGS_DIR/packages/peripherals/hal-sdk/nuvoton/nuvoton_arm926_lib/Kconfig"

endmenu
27 changes: 27 additions & 0 deletions peripherals/hal-sdk/nuvoton/nuvoton_arm926_lib/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

# Kconfig file for package nuvoton_arm926_lib
menuconfig PKG_USING_NUVOTON_RAM926_LIB
bool "NUVOTON ARM926 LIB PACKAGE"
default n

if PKG_USING_NUVOTON_RAM926_LIB

config PKG_NUVOTON_RAM926_LIB_PATH
string
default "/packages/peripherals/hal-sdk/nuvoton/nuvoton_arm926_lib"

choice
prompt "Version"
help
Select the package version

config PKG_USING_NUVOTON_RAM926_LIB_LATEST_VERSION
bool "latest"
endchoice

config PKG_USING_NUVOTON_RAM926_LIB_VER
string
default "latest" if PKG_USING_NUVOTON_RAM926_LIB_LATEST_VERSION

endif

28 changes: 28 additions & 0 deletions peripherals/hal-sdk/nuvoton/nuvoton_arm926_lib/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "nuvoton-arm926-lib",
"description": "NUVOTON ARM926 LIB PACKAGE",
"description_zh": "NUVOTON ARM926 LIB 驱动包",
"enable": "PKG_USING_NUVOTON_RAM926_LIB",
"keywords": [
"nuvoton-arm926-lib"
],
"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/nuvoton-arm926-lib",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/nuvoton-arm926-lib#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/nuvoton-arm926-lib.git",
"filename": "",
"VER_SHA": "master"
}
]
}
27 changes: 27 additions & 0 deletions peripherals/hal-sdk/nuvoton/nuvoton_cmsis/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

# Kconfig file for package NUVOTON_cmsis_driver
menuconfig PKG_USING_NUVOTON_CMSIS_DRIVER
bool "NUVOTON CMSIS DRIVER PACKAGE"
default n

if PKG_USING_NUVOTON_CMSIS_DRIVER

config PKG_NUVOTON_CMSIS_DRIVER_PATH
string
default "/packages/peripherals/hal-sdk/nuvoton/nuvoton_cmsis"

choice
prompt "Version"
help
Select the package version

config PKG_USING_NUVOTON_CMSIS_DRIVER_LATEST_VERSION
bool "latest"
endchoice

config PKG_NUVOTON_CMSIS_DRIVER_VER
string
default "latest" if PKG_USING_NUVOTON_CMSIS_DRIVER_LATEST_VERSION

endif

28 changes: 28 additions & 0 deletions peripherals/hal-sdk/nuvoton/nuvoton_cmsis/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "nuvoton-cmsis",
"description": "NUVOTON CMSIS DRIVER PACKAGE",
"description_zh": "NUVOTON CMSIS 驱动包",
"enable": "PKG_USING_NUVOTON_CMSIS_DRIVER",
"keywords": [
"nuvoton-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/nuvoton-cmsis",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/nuvoton-cmsis#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/nuvoton-cmsis.git",
"filename": "",
"VER_SHA": "master"
}
]
}
Loading
Loading