d2b98cc150
Use STM32 DMA IP core version instead of chip family names and some minor improvements arch/arm/src/stm32/chip/stm32_adc.h: raise error if two IP cores seleceted libs/libdsp/Kconfig: cosmetic change arch/arm/src/stm32/Kconfig: hide TIMER menu, HRTIM menu and USB Host debug menu if peripherals not enabled configs/stm32f429i-disco/highpri/defconfig: fix configuration warning Approved-by: GregoryN <gnutt@nuttx.org>
34 lines
988 B
Plaintext
34 lines
988 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config LIBDSP
|
|
bool "Digital Signal Processing Library"
|
|
default n
|
|
---help---
|
|
Enable build for various DSP functions
|
|
|
|
if LIBDSP
|
|
|
|
config LIBDSP_DEBUG
|
|
bool "Libdsp debugging"
|
|
default n
|
|
---help---
|
|
Enable debugging for libdsp. This option enables additional parameters
|
|
checking. It can drastically reduce performance and be potentially
|
|
dangerous to hardware, so it should be used carefully (probably only
|
|
at an early stage of application development).
|
|
|
|
config LIBDSP_PRECISION
|
|
int "Libdsp precision [0/1/2]"
|
|
default 0
|
|
---help---
|
|
Whith this option we can select libdsp precision for
|
|
some of calculations. There are 3 available options:
|
|
0 - the fastest calculation but the lowest precision
|
|
1 - a little better precision than above, but slowest
|
|
2 - the most accuracte but the slowest one, use standard math functions.
|
|
|
|
endif # LIBDSP
|