Skip to content

Commit

Permalink
add CMSIS-DSP package
Browse files Browse the repository at this point in the history
  • Loading branch information
AlgoOy committed Aug 4, 2023
1 parent 49cce76 commit 441f448
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
27 changes: 27 additions & 0 deletions signalprocess/CMSIS-DSP/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

# Kconfig file for package CMSIS-DSP
menuconfig PKG_USING_CMSIS_DSP
bool "CMSIS-DSP: embedded compute library for Cortex-M and Cortex-A"
default n

if PKG_USING_CMSIS_DSP

config PKG_CMSIS_DSP_PATH
string
default "/packages/signalprocess/CMSIS-DSP"

choice
prompt "Version"
help
Select the package version

config PKG_USING_CMSIS_DSP_LATEST_VERSION
bool "latest"
endchoice

config PKG_CMSIS_DSP_VER
string
default "latest" if PKG_USING_CMSIS_DSP_LATEST_VERSION

endif

31 changes: 31 additions & 0 deletions signalprocess/CMSIS-DSP/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "CMSIS-DSP",
"description": "CMSIS-DSP embedded compute library for Cortex-M and Cortex-A",
"description_zh": "CMSIS-DSP嵌入式计算库(Cortex-M和Cortex-A)",
"enable": "PKG_USING_CMSIS_DSP",
"keywords": [
"CMSIS-DSP",
"DSP",
"CMSIS",
"ARM"
],
"category": "signalprocess",
"author": {
"name": "ARM-software",
"email": "[email protected]",
"github": "ARM-software"
},
"license": "Apache-2.0",
"repository": "https://github.com/RT-Thread-packages/CMSIS-DSP",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/CMSIS-DSP#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/CMSIS-DSP.git",
"filename": "",
"VER_SHA": "main"
}
]
}
1 change: 1 addition & 0 deletions signalprocess/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ source "$PKGS_DIR/packages/signalprocess/qpid/Kconfig"
source "$PKGS_DIR/packages/signalprocess/ukal/Kconfig"
source "$PKGS_DIR/packages/signalprocess/DigitalCtrl/Kconfig"
source "$PKGS_DIR/packages/signalprocess/kissfft/Kconfig"
source "$PKGS_DIR/packages/signalprocess/CMSIS-DSP/Kconfig"

endmenu

0 comments on commit 441f448

Please sign in to comment.