nuttx-apps/benchmarks/mtd/Kconfig
Tiago Medicci cf1d5bb08b benchmarks/mtd: use PRIxxx macro to improve portability
To improve portability, use `PRIxxx` macro instead of int/long int
format specifiers.

Signed-off-by: Tiago Medicci <tiago.medicci@espressif.com>
2025-04-01 09:08:59 +02:00

18 lines
694 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config BENCHMARK_MTD
tristate "MTD test and transfer rate benchmark"
default n
depends on BUILD_FLAT && MTD && LIBC_FLOATINGPOINT
---help---
This testing/benchmark application performs an erase/write
operation to evaluate write transfer rate and then reads the
written content back to evaluate the read transfer rate. Finally,
it compares the read data with the previously written data to
ensure the MTD device is working as expected.
NOTE: This application uses internal OS interfaces and so it is not
available in the NuttX kernel build.