summaryrefslogtreecommitdiff
path: root/nuttx/TODO
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-10-25 14:19:09 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-10-25 14:19:09 -0600
commit55810f06f49bae6146eb18f7199fc39c04ebf87b (patch)
tree3c546f0337bbe273585f364fd2f0be2a60033394 /nuttx/TODO
parent1038145bb042e8cd252595e5fe18d132349cb26d (diff)
downloadnuttx-55810f06f49bae6146eb18f7199fc39c04ebf87b.tar.gz
nuttx-55810f06f49bae6146eb18f7199fc39c04ebf87b.tar.bz2
nuttx-55810f06f49bae6146eb18f7199fc39c04ebf87b.zip
Add ioctl to support software triggering of ADC/DAC conversions
Diffstat (limited to 'nuttx/TODO')
-rw-r--r--nuttx/TODO17
1 files changed, 16 insertions, 1 deletions
diff --git a/nuttx/TODO b/nuttx/TODO
index 4736b88b3..c94130875 100644
--- a/nuttx/TODO
+++ b/nuttx/TODO
@@ -18,7 +18,7 @@ nuttx/
(16) Network (net/, drivers/net)
(4) USB (drivers/usbdev, drivers/usbhost)
(11) Libraries (libc/, )
- (10) File system/Generic drivers (fs/, drivers/)
+ (11) File system/Generic drivers (fs/, drivers/)
(5) Graphics subystem (graphics/)
(1) Pascal add-on (pcode/)
(1) Documentation (Documentation/)
@@ -1163,6 +1163,21 @@ o File system / Generic drivers (fs/, drivers/)
Priority: Low. Nothing is broken. This is an enhancement that would
improve the OS design and possible reduce some FLASH usage
+ Title: UNIFIED DESCRIPTOR REPRESENTATION
+ Descripton: There are two separate ranges of descriptors for file and
+ socket descriptors: if a descriptor is in one range then it is
+ recognized as a file descriptor; if it is in another range
+ then it is recognized as a socket descriptor. These separate
+ descriptor ranges can cause problems, for example, they makes
+ dup'ing descriptors with dup2() problematic. The two groups
+ of descriptors are really indices into two separate tables:
+ On an array of file structures and the other an array of
+ socket structures. There really should be one array that
+ is a union of file and socket descriptors. Then socket and
+ file decriptors could lie in the same range.
+ Status: Open
+ Priority: Low
+
o Graphics subystem (graphics/)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^