nuttx-apps/system/cachespeed/Kconfig
crafcat 0e0ac0656b system/cachespeed:Tools for testing cache-related speed.
Signed-off-by: crafcat <110923103+crafcat7@users.noreply.github.com>
2022-10-01 11:41:40 +08:00

31 lines
651 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_CACHESPEED
tristate "CACHE Speed Test"
default n
---help---
Enable a simple CACHE speed test.
if SYSTEM_CACHESPEED
config SYSTEM_CACHESPEED_PROGNAME
string "Program name"
default "cachespeed"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config SYSTEM_CACHESPEED_PRIORITY
int "CACHE speed test task priority"
default 100
config SYSTEM_CACHESPEED_STACKSIZE
int "CACHE speed test stack size"
default DEFAULT_TASK_STACKSIZE
endif