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
4 changes: 4 additions & 0 deletions peripherals/hal-sdk/stm32/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,8 @@ source "$PKGS_DIR/packages/peripherals/hal-sdk/stm32/stm32wb_cmsis_driver/Kconfi
source "$PKGS_DIR/packages/peripherals/hal-sdk/stm32/stm32mp1_m4_hal_driver/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/stm32/stm32mp1_m4_cmsis_driver/Kconfig"

#STM32N6
source "$PKGS_DIR/packages/peripherals/hal-sdk/stm32/stm32n6_hal_driver/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/stm32/stm32n6_cmsis_driver/Kconfig"

endmenu
27 changes: 27 additions & 0 deletions peripherals/hal-sdk/stm32/stm32n6_cmsis_driver/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Kconfig file for package stm32f1_cmsis_driver
menuconfig PKG_USING_STM32N6_CMSIS_DRIVER
bool "STM32 N6 CMSIS driver package"
select PKG_USING_CMSIS_CORE
default n

if PKG_USING_STM32N6_CMSIS_DRIVER

config PKG_STM32N6_CMSIS_DRIVER_PATH
string
default "/packages/peripherals/hal-sdk/stm32/stm32n6_cmsis_driver"

choice
prompt "Version"
help
Select the package version

config PKG_USING_STM32N6_CMSIS_DRIVER_LATEST_VERSION
bool "latest"
endchoice

config PKG_STM32N6_CMSIS_DRIVER_VER
string
default "latest" if PKG_USING_STM32N6_CMSIS_DRIVER_LATEST_VERSION

endif

29 changes: 29 additions & 0 deletions peripherals/hal-sdk/stm32/stm32n6_cmsis_driver/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "stm32n6_cmsis_driver",
"description": "STM32 N6 CMSIS driver package",
"description_zh": "STM32 N6 CMSIS 驱动包",
"enable": "PKG_USING_STM32N6_CMSIS_DRIVER",
"keywords": [
"stm32n6_cmsis_driver",
"STM32"
],
"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/cmsis-device-n6",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/cmsis-device-n6#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/cmsis-device-n6.git",
"filename": "",
"VER_SHA": "main"
}
]
}
28 changes: 28 additions & 0 deletions peripherals/hal-sdk/stm32/stm32n6_hal_driver/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

# Kconfig file for package stm32n6_hal_driver
menuconfig PKG_USING_STM32N6_HAL_DRIVER
bool "STM32 N6 HAL driver package"
select PKG_USING_STM32N6_CMSIS_DRIVER
default n

if PKG_USING_STM32N6_HAL_DRIVER

config PKG_STM32N6_HAL_DRIVER_PATH
string
default "/packages/peripherals/hal-sdk/stm32/stm32n6_hal_driver"

choice
prompt "Version"
help
Select the package version

config PKG_USING_STM32N6_HAL_DRIVER_LATEST_VERSION
bool "latest"
endchoice

config PKG_STM32N6_HAL_DRIVER_VER
string
default "latest" if PKG_USING_STM32N6_HAL_DRIVER_LATEST_VERSION

endif

29 changes: 29 additions & 0 deletions peripherals/hal-sdk/stm32/stm32n6_hal_driver/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "stm32n6_hal_driver",
"description": "STM32 N6 HAL driver package",
"description_zh": "STM32 N6 HAL 驱动包",
"enable": "PKG_USING_STM32N6_HAL_DRIVER",
"keywords": [
"stm32n6_hal_driver",
"STM32"
],
"category": "peripherals",
"author": {
"name": "RT-Thread-packages",
"email": "package_team@rt-thread.com",
"github": "RT-Thread-packages"
},
"license": "BSD-3-Clause",
"repository": "https://github.com/RT-Thread-packages/stm32n6xx-hal-driver",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/stm32n6xx-hal-driver#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/stm32n6xx-hal-driver.git",
"filename": "",
"VER_SHA": "main"
}
]
}