nuttx-apps/examples/calib_udelay/Kconfig
chao an 42d34fcef3 build/Kconfig: fix warnings detected by kconfiglib
Signed-off-by: chao an <anchao@xiaomi.com>
2023-02-09 19:45:36 +08:00

26 lines
646 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config EXAMPLES_CALIB_UDELAY
tristate "Calibration tool for udelay"
default n
select LIBC_FLOATINGPOINT
---help---
Note that libm support is also required by this tool. You
may select CONFIG_LIBM to use the NuttX libm if you are not
using an external libm.
if EXAMPLES_CALIB_UDELAY
config EXAMPLES_CALIB_UDELAY_NUM_MEASUREMENTS
int "Number of measurements to take for each loop iteration count"
default 3
config EXAMPLES_CALIB_UDELAY_NUM_RESULTS
int "Number of results to generate for calibration slope"
default 20
endif