summaryrefslogtreecommitdiff
path: root/NxWidgets/TODO.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-21 13:34:09 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-21 13:34:09 +0000
commit1d1cb9be06ee80a0d3dbcc77561a7d173ff7a659 (patch)
treecdfe988ec4cc479e3e69d3f297b8534ceece2eb3 /NxWidgets/TODO.txt
parente4a79c57a116979c2cd74597e7c85d912ec6c10b (diff)
downloadpx4-nuttx-1d1cb9be06ee80a0d3dbcc77561a7d173ff7a659.tar.gz
px4-nuttx-1d1cb9be06ee80a0d3dbcc77561a7d173ff7a659.tar.bz2
px4-nuttx-1d1cb9be06ee80a0d3dbcc77561a7d173ff7a659.zip
Fix NxWM bug: old window being minimized when new window open
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4757 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/TODO.txt')
-rw-r--r--NxWidgets/TODO.txt15
1 files changed, 14 insertions, 1 deletions
diff --git a/NxWidgets/TODO.txt b/NxWidgets/TODO.txt
index 6d74b6917..c0b9c5373 100644
--- a/NxWidgets/TODO.txt
+++ b/NxWidgets/TODO.txt
@@ -4,7 +4,7 @@ NxWidgets
NxWM
----
- (3) General issues
+ (4) General issues
(3) NxConsole issues
(1) Platform specific issues
@@ -55,6 +55,19 @@ o General NxWM Issues
Status: Open
Priority: Low
+ Title: COMBINE CTouchscreen AND CKeyboard THREADS
+ Description: Right now, two separate threads handle touchscreen and keyboard/
+ console input. Each just waits on read() and when toushcscreen
+ or keyboard input is received, it injects the data into NX.
+ These two threads should be combined into one thread that waits
+ on poll for read data from either device. Then when read data
+ becomes ready for either device, it could perform the read and
+ data inject from a single thread.
+ Status: Open
+ Priority: Low, this is not a product but a text example. If NxWM were
+ to be productized, this change should be done in order to reduce
+ stack memory consumption.
+
o NxConsole Issues
----------------