git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@94 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2007-03-19 16:37:46 +00:00
parent 9d0cb01713
commit 83857ea52b
2 changed files with 28 additions and 8 deletions

View File

@ -32,24 +32,32 @@
issue when SP enters indirect address space. issue when SP enters indirect address space.
* Documentation updates * Documentation updates
0.1.2 2007-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> 0.1.2 2007-03-19 Gregory Nutt <spudmonkey@racsa.co.cr>
* Add dirent.h, opendir(), readdir(), closedir(), etc. * Add dirent.h, opendir(), readdir(), closedir(), etc.
* Add strerror() * Add strerror()
* Added 'ls' command to nsh * Added 'ls' command to nsh
* Added C5471 watchdog driver * Added C5471 watchdog driver
* Added support for the Neuros OSD / DM320
* Fixed another bug where free() is called from IDLE task. * Fixed another bug where free() is called from IDLE task.
Can't do this; the caller must be able to wait for access Can't do this; the caller must be able to wait for access
to memory. to memory.
* Cannot do debug output in middle of context switch logic. * Fixed bugs associated with debug output:
Cannot do dbg() in middle of context switch logic.
because it may require use of semaphores and cause
additional context switches. lldbg() is safe.
* Interrupt must be disabled throughout all context switches. * Interrupt must be disabled throughout all context switches.
* Separated C5471 serial driver; a shareable part is * Separated C5471 serial driver; a shareable part is
in drivers/. ; the C5471 specific part is in arch/C5471. in drivers/. ; the C5471 specific part is in arch/C5471.
serial.h defines the interface. serial.h defines the interface.
* Fixed mq_receive() and mq_send() -- bad memcpy() * Fixed mq_receive() and mq_send() -- bad memcpy()
* Fixed C5471 signal deliver logic: use of dbg() and
other actions by use signal handler can alter errno.
need to protect errno during signal handling.
* Fixed uninitialized variable in filesystem that could * Fixed uninitialized variable in filesystem that could
cause various problems cause various problems
* Added a test for roundrobin scheduler. * Added a test for roundrobin scheduler.
0.1.3 2007-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
* Added support for the Neuros OSD / DM320

View File

@ -382,7 +382,7 @@ Other memory:
the stack usage down for the 8051/2 (which has only the stack usage down for the 8051/2 (which has only
256 bytes of stack). 256 bytes of stack).
* Attempts to use C5471 console from interrupt handlers * 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 * Refuse calls to sem_wait and sem_trywait from interrupt
handlers. This was happening because interrupt handlers handlers. This was happening because interrupt handlers
were calling printf-like functions. were calling printf-like functions.
@ -393,22 +393,34 @@ Other memory:
issue when SP enters indirect address space. issue when SP enters indirect address space.
* Documentation updates * Documentation updates
0.1.2 2007-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> 0.1.2 2007-03-19 Gregory Nutt <spudmonkey@racsa.co.cr>
* Add dirent.h, opendir(), readdir(), closedir(), etc. * Add dirent.h, opendir(), readdir(), closedir(), etc.
* Add strerror() * Add strerror()
* Added 'ls' command to nsh * Added 'ls' command to nsh
* Added C5471 watchdog driver * Added C5471 watchdog driver
* Added support for the Neuros OSD / DM320 * Fixed another bug where free() is called from IDLE task.
* Fixed another bug where free() is called from IDEL task.
Can't do this; the caller must be able to wait for access Can't do this; the caller must be able to wait for access
to memory. to memory.
* Fixed bugs associated with debug output:
Cannot do dbg() in middle of context switch logic.
because it may require use of semaphores and cause
additional context switches. lldbg() is safe.
* Interrupt must be disabled throughout all context switches.
* Separated C5471 serial driver; a shareable part is * Separated C5471 serial driver; a shareable part is
in drivers/. ; the C5471 specific part is in arch/C5471. in drivers/. ; the C5471 specific part is in arch/C5471.
serial.h defines the interface. serial.h defines the interface.
* Fixed mq_receive() -- bad memcpy() * Fixed mq_receive() and mq_send() -- bad memcpy()
* Fixed C5471 signal deliver logic: use of dbg() and
other actions by use signal handler can alter errno.
need to protect errno during signal handling.
* Fixed uninitialized variable in filesystem that could
cause various problems
* Added a test for roundrobin scheduler.
0.1.3 2007-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
* Added support for the Neuros OSD / DM320
</pre></ul> </pre></ul>
<table width ="100%"> <table width ="100%">