summaryrefslogtreecommitdiff
path: root/apps/system/usbmonitor/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-28 18:45:09 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-28 18:45:09 +0000
commit489c78d7b6b14ca5b8eb7e2011c77599166a7894 (patch)
treefcef2fdecc280aaec908c53e88b9b4be5ad3557a /apps/system/usbmonitor/Kconfig
parent00aaf1187f47fd3e9a2801b6468d1f382819981c (diff)
downloadnuttx-489c78d7b6b14ca5b8eb7e2011c77599166a7894.tar.gz
nuttx-489c78d7b6b14ca5b8eb7e2011c77599166a7894.tar.bz2
nuttx-489c78d7b6b14ca5b8eb7e2011c77599166a7894.zip
Beginning of apps/system/usbmonitor (incomplete); more LM4F changes from JP
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5577 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/system/usbmonitor/Kconfig')
-rw-r--r--apps/system/usbmonitor/Kconfig33
1 files changed, 33 insertions, 0 deletions
diff --git a/apps/system/usbmonitor/Kconfig b/apps/system/usbmonitor/Kconfig
new file mode 100644
index 000000000..7199845b1
--- /dev/null
+++ b/apps/system/usbmonitor/Kconfig
@@ -0,0 +1,33 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+config SYSTEM_USBMONITOR
+ bool "USB Monitor"
+ default n
+ depends on USBDEV && USBDEV_TRACE && SYSLOG
+ ---help---
+ If USB device tracing is enabled (USBDEV_TRACE), then this option
+ will select the USB monitor. The USB monitor is a daemon that will
+ periodically collect the buffered USB trace data and dump it to the
+ SYSLOG device.
+
+if SYSTEM_USBMONITOR
+
+config SYSTEM_USBMONITOR_STACKSIZE
+ int "USB Monitor Stack Size"
+ default 2048
+ depends on NSH_BUILTIN_APPS
+ ---help---
+ The stack size to use the the USB monitor daemon. Default: 2048
+
+config SYSTEM_USBMONITOR_PRIORITY
+ int "USB Monitor Stack Size"
+ default 50
+ depends on NSH_BUILTIN_APPS
+ ---help---
+ The priority to use the the USB monitor daemon. Default: 50
+
+endif
+