9
0
Fork 0
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@55 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2007-03-10 14:45:23 +00:00
parent ab366f533c
commit e096e90a74
1 changed files with 6 additions and 3 deletions

View File

@ -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