summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-10 14:45:23 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-10 14:45:23 +0000
commit8404d53e7285cad8c64992658a84a3d6809cef27 (patch)
treef6de1ff41efe8721554311080ce68967a8a33d12
parent4150a6cc39852cfe651471821eb9f1e23f1d3af2 (diff)
downloadnuttx-8404d53e7285cad8c64992658a84a3d6809cef27.tar.gz
nuttx-8404d53e7285cad8c64992658a84a3d6809cef27.tar.bz2
nuttx-8404d53e7285cad8c64992658a84a3d6809cef27.zip
Updated
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@55 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/ChangeLog9
1 files changed, 6 insertions, 3 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 61b8970b0..2366581c7 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -8,11 +8,14 @@
* Corrected an error in interrupt level context switching
for C5471
- * Added fgets logic; verified console read.
+ * Added fgets() and gets() logic; verified c5471 console read.
* Corrected error in reading from serial port. Improper
use of semaphore can cause deadlock.
* Attempts to use C5471 console from interrupt handlers
can casue errors. Added a special path for this case.
- * Refuse callse to sem_wait and sem_trywait from interrupt
- handlers.
+ * Refuse calls to sem_wait and sem_trywait from interrupt
+ handlers. This was happening because interrupt handlers
+ were calling printf-like functions.
+ * Added strtok() and strtok_r()
+ * Added a simple shell called nsh (see examples/nsh).
* Documentation updates