2016-03-17 23:02:28 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2016-05-19 03:22:47 +02:00
|
|
|
config SYSTEM_NOTE
|
2018-09-03 17:29:56 +02:00
|
|
|
tristate "Scheduler monitor"
|
2016-03-17 23:02:28 +01:00
|
|
|
default n
|
|
|
|
depends on DRIVER_NOTE
|
|
|
|
---help---
|
2016-05-19 03:22:47 +02:00
|
|
|
Enable the schedler instrumentation monitor
|
2016-03-17 23:02:28 +01:00
|
|
|
|
2016-05-19 03:22:47 +02:00
|
|
|
if SYSTEM_NOTE
|
2016-03-17 23:02:28 +01:00
|
|
|
|
2016-05-19 03:22:47 +02:00
|
|
|
config SYSTEM_NOTE_PROGNAME
|
2016-03-17 23:02:28 +01:00
|
|
|
string "Program name"
|
|
|
|
default "note"
|
2018-08-23 19:06:15 +02:00
|
|
|
depends on BUILD_LOADABLE
|
2016-03-17 23:02:28 +01:00
|
|
|
---help---
|
|
|
|
This is the name of the program that will be use when the NSH ELF
|
|
|
|
program is installed.
|
|
|
|
|
2016-05-19 03:22:47 +02:00
|
|
|
config SYSTEM_NOTE_PRIORITY
|
2016-03-17 23:02:28 +01:00
|
|
|
int "Note daemon task priority"
|
|
|
|
default 100
|
|
|
|
|
2016-05-19 03:22:47 +02:00
|
|
|
config SYSTEM_NOTE_STACKSIZE
|
2016-03-17 23:02:28 +01:00
|
|
|
int "Note daemon stack size"
|
|
|
|
default 2048
|
|
|
|
|
2016-05-19 03:22:47 +02:00
|
|
|
config SYSTEM_NOTE_BUFFERSIZE
|
2016-03-17 23:02:28 +01:00
|
|
|
int "Note daemon I/O buffer size"
|
|
|
|
default 1024
|
|
|
|
|
2016-05-19 03:22:47 +02:00
|
|
|
config SYSTEM_NOTE_DELAY
|
2016-03-17 23:02:28 +01:00
|
|
|
int "Note daemon sample delay (msec)"
|
|
|
|
default 1000
|
|
|
|
|
2016-05-19 03:22:47 +02:00
|
|
|
endif # SYSTEM_NOTE
|