summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-16 22:07:31 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-16 22:07:31 +0000
commitc942fd3bb20384752f3b58c884ed9e5a3e407240 (patch)
treeaf444622a156cb28ca02f756996ab00dfa9794dc
parent55e3115447817eeb38232f38fc865bfe8403ef9c (diff)
downloadnuttx-c942fd3bb20384752f3b58c884ed9e5a3e407240.tar.gz
nuttx-c942fd3bb20384752f3b58c884ed9e5a3e407240.tar.bz2
nuttx-c942fd3bb20384752f3b58c884ed9e5a3e407240.zip
update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@76 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/ChangeLog9
1 files changed, 8 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index d87eaeea9..c5e9f17c0 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -21,7 +21,7 @@
the stack usage down for the 8051/2 (which has only
256 bytes of stack).
* Attempts to use C5471 console from interrupt handlers
- can casue errors. Added a special path for this case.
+ can cause errors. Added a special path for this case.
* Refuse calls to sem_wait and sem_trywait from interrupt
handlers. This was happening because interrupt handlers
were calling printf-like functions.
@@ -38,5 +38,12 @@
* Added 'ls' command to nsh
* Added C5471 watchdog driver
* Added support for the Neuros OSD / DM320
+ * Fixed another bug where free() is called from IDEL task.
+ Can't do this; the caller must be able to wait for access
+ to memory.
+ * Separated C5471 serial driver; a shareable part is
+ in drivers/. ; the C5471 specific part is in arch/C5471.
+ serial.h defines the interface.
+ * Fixed mq_receive() -- bad memcpy()