nuttx/drivers/math/Kconfig
simbit18 70ab01a20b Fix Kconfig style
Replace help => ---help---
Remove spaces from Kconfig
Add comments
2023-08-18 16:36:04 +03:00

36 lines
820 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 # MATH CORDIC numeric type
endif # MATH_CORDIC
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