2021-10-28 14:39:54 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2023-11-06 05:17:22 +01:00
|
|
|
config BENCHMARK_RAMSPEED
|
2021-10-28 14:39:54 +02:00
|
|
|
tristate "RAM Speed Test"
|
|
|
|
default n
|
2024-04-10 06:06:20 +02:00
|
|
|
depends on LIBC_FLOATINGPOINT
|
2021-10-28 14:39:54 +02:00
|
|
|
---help---
|
|
|
|
Enable a simple RAM speed test.
|
|
|
|
|
2023-11-06 05:17:22 +01:00
|
|
|
if BENCHMARK_RAMSPEED
|
2021-10-28 14:39:54 +02:00
|
|
|
|
2023-11-06 05:17:22 +01:00
|
|
|
config BENCHMARK_RAMSPEED_PROGNAME
|
2021-10-28 14:39:54 +02:00
|
|
|
string "Program name"
|
|
|
|
default "ramspeed"
|
|
|
|
---help---
|
|
|
|
This is the name of the program that will be used when the NSH ELF
|
|
|
|
program is installed.
|
|
|
|
|
2023-11-06 05:17:22 +01:00
|
|
|
config BENCHMARK_RAMSPEED_PRIORITY
|
2021-10-28 14:39:54 +02:00
|
|
|
int "RAM speed test task priority"
|
|
|
|
default 100
|
|
|
|
|
2023-11-06 05:17:22 +01:00
|
|
|
config BENCHMARK_RAMSPEED_STACKSIZE
|
2021-10-28 14:39:54 +02:00
|
|
|
int "RAM speed test stack size"
|
|
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
|
|
|
|
endif
|