mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
To improve portability, use `PRIxxx` macro instead of int/long int format specifiers. Signed-off-by: Tiago Medicci <tiago.medicci@espressif.com>
18 lines
694 B
Text
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.
|