summaryrefslogtreecommitdiff
path: root/nuttx/TODO
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-01 19:07:57 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-01 19:07:57 +0000
commit6d35541209058b86bda7b34e47fa28c8c959d365 (patch)
tree058c4031d3edf80d524112e76c6da2bdc0be8e5c /nuttx/TODO
parent4b8f5a9e6dc87bad723af14933cb8c17284eade6 (diff)
downloadpx4-nuttx-6d35541209058b86bda7b34e47fa28c8c959d365.tar.gz
px4-nuttx-6d35541209058b86bda7b34e47fa28c8c959d365.tar.bz2
px4-nuttx-6d35541209058b86bda7b34e47fa28c8c959d365.zip
Move lib/stdio/lib_fgets.c to apps/system/readline; simplify fgets(); use readline instead of fgets in NSH
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4356 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/TODO')
-rw-r--r--nuttx/TODO28
1 files changed, 16 insertions, 12 deletions
diff --git a/nuttx/TODO b/nuttx/TODO
index 09b886adc..1bf143729 100644
--- a/nuttx/TODO
+++ b/nuttx/TODO
@@ -1,4 +1,4 @@
-NuttX TODO List (Last updated January 17, 2012)
+NuttX TODO List (Last updated February 1, 2012)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This file summarizes known NuttX bugs, limitations, inconsistencies with
@@ -15,7 +15,7 @@ nuttx/
(5) Binary loaders (binfmt/)
(16) Network (net/, drivers/net)
(2) USB (drivers/usbdev, drivers/usbhost)
- (9) Libraries (lib/)
+ (8) Libraries (lib/)
(10) File system/Generic drivers (fs/, drivers/)
(1) Graphics subystem (graphics/)
(1) Pascal add-on (pcode/)
@@ -46,6 +46,7 @@ apps/
(5) Network Utilities (apps/netutils/)
(5) NuttShell (NSH) (apps/nshlib)
+ (1) System libraries apps/system (apps/system)
(5) Other Applications & Tests (apps/examples/)
o Task/Scheduler (sched/)
@@ -462,15 +463,6 @@ o Libraries (lib/)
Status: Open
Priority: Medium
- Title: FGETS IMPLEMENTATION
- Description: fgets implementation does not use C-buffered I/O, but rather
- talks to serial driver directly via read(). It includes VT-100
- specific editting commands. This gets should be renamed readline()
- and a more generic fgets() should be implemented.
- Status: Open
- Priority: Low (unless you are using mixed C-buffered I/O with fgets and
- fgetc, for example).
-
Title: TERMIOS
Description: Need some minimal termios support... at a minimum, enough to
switch between raw and "normal" modes to support behavior like
@@ -1583,8 +1575,20 @@ o NuttShell (NSH) (apps/nshlib)
Status: Open
Priority: Low (enhancement)
+o System libraries apps/system (apps/system)
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+ Title: READLINE IMPLEMENTATION
+ Description: readline implementation does not use C-buffered I/O, but rather
+ talks to serial driver directly via read(). It includes VT-100
+ specific editting commands. A more generic readline() should be
+ implemented.
+ Status: Open
+ Priority: Low (unless you are using mixed C-buffered I/O with readline and
+ fgetc, for example).
+
o Other Applications & Tests (apps/examples/)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Title: EXAMPLES/PIPE ON CYGWIN
Description: The redirection test (part of examples/pipe) terminates