2013-03-27 01:03:25 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2013-03-27 01:03:25 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
config SYSTEM_RAMTEST
|
2018-09-03 17:29:56 +02:00
|
|
|
tristate "RAM Test"
|
2013-03-27 01:03:25 +01:00
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable a simple RAM test.
|
2017-05-21 20:12:45 +02:00
|
|
|
|
|
|
|
if SYSTEM_RAMTEST
|
|
|
|
|
|
|
|
config SYSTEM_RAMTEST_PROGNAME
|
|
|
|
string "Program name"
|
|
|
|
default "ramtest"
|
2018-08-23 19:06:15 +02:00
|
|
|
depends on BUILD_LOADABLE
|
2017-05-21 20:12:45 +02:00
|
|
|
---help---
|
2019-08-23 19:59:28 +02:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2017-05-21 20:12:45 +02:00
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config SYSTEM_RAMTEST_PRIORITY
|
|
|
|
int "RAM test task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config SYSTEM_RAMTEST_STACKSIZE
|
|
|
|
int "RAM test stack size"
|
|
|
|
default 1024
|
|
|
|
|
|
|
|
endif
|