diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 0eb4e6f449..81f819260d 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@
Last Updated: January 16, 2011
+Last Updated: January 19, 2011
@@ -3622,6 +3622,42 @@ buildCONFIG_USBHOST_ISOC_DISABLE
: On some architectures, selecting this setting will reduce driver size by disabling isochronous endpoint support
+
+ Requires CONFIG_USBHOST=y
, CONFIG_USBHOST_INT_DISABLE=n
, CONFIG_NFILE_DESCRIPTORS > 0
,
+ CONFIG_SCHED_WORKQUEUE=y
, and CONFIG_DISABLE_SIGNALS=n
.
+
CONFIG_HIDKBD_POLLUSEC
: Device poll rate in microseconds. Default: 100 milliseconds.
+ CONFIG_HIDKBD_DEFPRIO
: Priority of the polling thread. Default: 50.
+ CONFIG_HIDKBD_STACKSIZE
: Stack size for polling thread. Default: 1024
+ CONFIG_HIDKBD_BUFSIZE
: Scancode buffer size. Default: 64.
+ CONFIG_HIDKBD_NPOLLWAITERS
: If the poll() method is enabled, this defines the maximum number of threads that can be waiting for keyboard events. Default: 2.
+ CONFIG_HIDKBD_RAWSCANCODES
: If set to y
no conversion will be made on the raw keyboard scan codes. Default: ASCII conversion.
+ CONFIG_HIDKBD_ALLSCANCODES
: If set to y
all 231 possible scancodes will be converted to something. Default: 104 key US keyboard.
+ CONFIG_HIDKBD_NODEBOUNCE
: If set to y
normal debouncing is disabled. Default: Debounce/No repeat keys.
+
+ Requires CONFIG_USBHOST=y
, CONFIG_USBHOST_BULK_DISABLE=n
, CONFIG_NFILE_DESCRIPTORS > 0
,
+ and CONFIG_SCHED_WORKQUEUE=y
.
+