summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nuttx/ChangeLog5
-rw-r--r--nuttx/Documentation/NuttX.html5
-rw-r--r--nuttx/TODO21
3 files changed, 11 insertions, 20 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index e3b2eb7bf..4bd2b421d 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -1463,9 +1463,8 @@
a USB host HID keyboard configuraion.
* drivers/usbhost/hid_parser.c -- Leverages the LUFA HID parser written by
Dean Camera.
- * lib/lib_getopt() -- Correct an error in the getopt() logic: On certain error
- return cases, the state was not being reset correcly and incorrect behaviors
- could occur on subsequent calls to getopt().
+ * examples/nsh -- Correct an usage of getopt(): If you stop calling getopt()
+ before all parameters are parsed, you can leave getopt() in a strange state.
diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html
index 58d886b3f..75b9a0040 100644
--- a/nuttx/Documentation/NuttX.html
+++ b/nuttx/Documentation/NuttX.html
@@ -2040,9 +2040,8 @@ nuttx-5.18 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
a USB host HID keyboard configuraion.
* drivers/usbhost/hid_parser.c -- Leverages the LUFA HID parser written by
Dean Camera.
- * lib/lib_getopt() -- Correct an error in the getopt() logic: On certain error
- return cases, the state was not being reset correcly and incorrect behaviors
- could occur on subsequent calls to getopt().
+ * examples/nsh -- Correct an usage of getopt(): If you stop calling getopt()
+ before all parameters are parsed, you can leave getopt() in a strange state.
pascal-2.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
diff --git a/nuttx/TODO b/nuttx/TODO
index 70f861c99..c3fa2ad62 100644
--- a/nuttx/TODO
+++ b/nuttx/TODO
@@ -1,4 +1,4 @@
-NuttX TODO List (Last updated January 26, 2011)
+NuttX TODO List (Last updated February 11, 2011)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
(5) Task/Scheduler (sched/)
@@ -24,7 +24,7 @@ NuttX TODO List (Last updated January 26, 2011)
(1) ARM/C5471 (arch/arm/src/c5471/)
(3) ARM/DM320 (arch/arm/src/dm320/)
(2) ARM/i.MX (arch/arm/src/imx/)
- (4) ARM/LPC17xx (arch/arm/src/lpc17xx/)
+ (3) ARM/LPC17xx (arch/arm/src/lpc17xx/)
(7) ARM/LPC214x (arch/arm/src/lpc214x/)
(2) ARM/LPC313x (arch/arm/src/lpc313x/)
(3) ARM/STR71x (arch/arm/src/str71x/)
@@ -684,13 +684,6 @@ o ARM/i.MX (arch/arm/src/imx/)
o ARM/LPC17xx (arch/arm/src/lpc17xx/)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Description: If debug is enabled so that there is a lot of early serial console output,
- The serial console output may be garbled initially. If this becomes a
- problem during debug, I've found that just putting a delaying at the
- beginning of os_start() (sched/os_start.c) eliminates the garbled output.
- Status: Open
- Priority: Low, only effects debug and there is a workaround
-
Description: USB DMA not fully implemented. Partial logic is in place but it is
fragmentary and bogus. (Leveraged from the lpc214x)
Status: Open
@@ -754,11 +747,11 @@ o ARM/LPC214x (arch/arm/src/lpc214x/)
Status: Open
Priority: Uncertain
- Description: Possible errors in USB device driver reported "I suspect there’s a few
- issues in the lpc214x USB driver – in particular it doesn’t stall both
- in/out endpoints for unsupported setup requests and it doesn’t call
- CLASS_DISCONNCET on a USB reset – I don’t have any access to that hardware
- so can’t pursue it really."
+ Description: Possible errors in USB device driver reported "I suspect there's a few
+ issues in the lpc214x USB driver - in particular it doesn't stall both
+ in/out endpoints for unsupported setup requests and it doesn't call
+ CLASS_DISCONNCET on a USB reset - I don't have any access to that hardware
+ so can't pursue it really."
Status: Open
Priority: Medium