nuttx/drivers/math/Kconfig
xiajizhong b84fbe87ee math acceleration api support FFT
Signed-off-by: xiajizhong <xiajizhong@xiaomi.com>
2023-08-11 20:38:00 +08:00

36 lines
780 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
menu "MATH Acceleration Support"
config MATH_CORDIC
bool "MATH CORDIC support"
default n
---help---
This selection enables building of the "upper-half" CORDIC driver.
See include/nuttx/math/cordic.h for further CORDIC driver information.
if MATH_CORDIC
choice
prompt "MATH CORDIC numeric type"
default MATH_CORDIC_USE_Q31
config MATH_CORDIC_USE_Q31
bool "CORDIC uses Q1.31"
endchoice
endif
config MATH_FFT
bool "MATH FFT support"
default n
---help---
This selection enables building of the "upper-half" FFT driver.
See include/nuttx/math/fft.h for further FFT driver information.
endmenu # MATH Acceleration Information