aboutsummaryrefslogtreecommitdiff
path: root/apps/system/usbmonitor/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-29 17:42:58 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-29 17:42:58 +0000
commitfb94bc1258c9fe4e78fe0d5515f6a6131a8d1e65 (patch)
tree81bc038356e0e42da3ae837e47097ed0d8ebd2f4 /apps/system/usbmonitor/Kconfig
parent2946cb47a8d70406a85c37f2d210e539c240a22b (diff)
downloadpx4-firmware-fb94bc1258c9fe4e78fe0d5515f6a6131a8d1e65.tar.gz
px4-firmware-fb94bc1258c9fe4e78fe0d5515f6a6131a8d1e65.tar.bz2
px4-firmware-fb94bc1258c9fe4e78fe0d5515f6a6131a8d1e65.zip
The USB monitor now works with the stm32f4discover/nsh configuration (but not with the usbnsh configuration)
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5580 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/system/usbmonitor/Kconfig')
-rw-r--r--apps/system/usbmonitor/Kconfig42
1 files changed, 38 insertions, 4 deletions
diff --git a/apps/system/usbmonitor/Kconfig b/apps/system/usbmonitor/Kconfig
index 7199845b1..bde97de15 100644
--- a/apps/system/usbmonitor/Kconfig
+++ b/apps/system/usbmonitor/Kconfig
@@ -16,18 +16,52 @@ config SYSTEM_USBMONITOR
if SYSTEM_USBMONITOR
config SYSTEM_USBMONITOR_STACKSIZE
- int "USB Monitor Stack Size"
+ int "USB Monitor daemon 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"
+ int "USB Monitor daemon priority"
default 50
- depends on NSH_BUILTIN_APPS
---help---
The priority to use the the USB monitor daemon. Default: 50
+config SYSTEM_USBMONITOR_INTERVAL
+ int "USB Monitor dump frequency"
+ default 2
+ ---help---
+ The rate in seconds that the USB monitor will wait before dumping
+ the next set of buffered USB trace data. Default: 2 seconds.
+
+config SYSTEM_USBMONITOR_TRACEINIT
+ bool "Show initialization events"
+ default n
+ ---help---
+ Show initialization events
+
+config SYSTEM_USBMONITOR_TRACECLASS
+ bool "Show class driver events"
+ default n
+ ---help---
+ Show class driver events
+
+config SYSTEM_USBMONITOR_TRACETRANSFERS
+ bool "Show data transfer events"
+ default n
+ ---help---
+ Show data transfer events
+
+config SYSTEM_USBMONITOR_TRACECONTROLLER
+ bool "Show controller events"
+ default n
+ ---help---
+ Show controller events
+
+config SYSTEM_USBMONITOR_TRACEINTERRUPTS
+ bool "Show interrupt-related events"
+ default n
+ ---help---
+ Show interrupt-related events
endif