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
|
2020-10-12 18:43:31 +02:00
|
|
|
depends on DRIVER_NOTERAM
|
2016-03-17 23:02:28 +01:00
|
|
|
---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"
|
|
|
|
---help---
|
2019-08-23 19:59:28 +02:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2016-03-17 23:02:28 +01:00
|
|
|
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"
|
2020-03-27 06:10:33 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2016-03-17 23:02:28 +01:00
|
|
|
|
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
|