1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

pkg/cmsis-dsp: model Kconfig

This commit is contained in:
Leandro Lanzieri 2021-09-28 19:41:26 +02:00
parent 0a3f603cf1
commit 2b20e66bc5
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593
2 changed files with 78 additions and 0 deletions

View File

@ -10,6 +10,7 @@ rsource "arduino_sdi_12/Kconfig"
rsource "c25519/Kconfig"
rsource "cayenne-lpp/Kconfig"
rsource "cifra/Kconfig"
rsource "cmsis-dsp/Kconfig"
rsource "cn-cbor/Kconfig"
rsource "driver_atwinc15x0/Kconfig"
rsource "driver_bme680/Kconfig"

77
pkg/cmsis-dsp/Kconfig Normal file
View File

@ -0,0 +1,77 @@
# Copyright (c) 2021 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
config PACKAGE_CMSIS-DSP
bool "DSP ARM CMSIS package"
depends on TEST_KCONFIG
help
This package uses DSP ARM CMSIS header from the official ARM github repo:
https://github.com/ARM-software/CMSIS_5.
if PACKAGE_CMSIS-DSP
config MODULE_CMSIS-DSP_BASICMATHFUNCTIONS
bool
default y
help
CMSIS DSP basic math functions.
config MODULE_CMSIS-DSP_COMMONTABLES
bool
default y
help
CMSIS DSP common tables.
config MODULE_CMSIS-DSP_COMPLEXMATHFUNCTIONS
bool
default y
help
CMSIS DSP complex math functions.
config MODULE_CMSIS-DSP_CONTROLLERFUNCTIONS
bool
default y
help
CMSIS DSP controller functions.
config MODULE_CMSIS-DSP_FASTMATHFUNCTIONS
bool
default y
help
CMSIS DSP fast math functions.
config MODULE_CMSIS-DSP_FILTERINGFUNCTIONS
bool
default y
help
CMSIS DSP filtering functions.
config MODULE_CMSIS-DSP_MATRIXFUNCTIONS
bool
default y
help
CMSIS DSP matrix functions.
config MODULE_CMSIS-DSP_STATISTICSFUNCTIONS
bool
default y
help
CMSIS DSP statistics functions.
config MODULE_CMSIS-DSP_SUPPORTFUNCTIONS
bool
default y
help
CMSIS DSP support functions.
config MODULE_CMSIS-DSP_TRANSFORMFUNCTIONS
bool
default y
help
CMSIS DSP transform functions.
endif # PACKAGE_CMSIS-DSP