Prep for 0.4.1 release
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1475 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
f5ed3ae106
commit
a87b9791d1
@ -599,7 +599,7 @@
|
|||||||
* Integrated the new font support with a font test in examples/nx
|
* Integrated the new font support with a font test in examples/nx
|
||||||
* Add documentation for NX graphics subsystem
|
* Add documentation for NX graphics subsystem
|
||||||
|
|
||||||
0.4.1 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
0.4.1 2009-02-06 Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
* Added board support fot the ZiLog ez80Acclaim! ez80f910200zco Development Kit.
|
* Added board support fot the ZiLog ez80Acclaim! ez80f910200zco Development Kit.
|
||||||
* Fixed several compilation errors in fixed precision math library when built
|
* Fixed several compilation errors in fixed precision math library when built
|
||||||
against toolchains that do not support 64-bit type 'long long'.
|
against toolchains that do not support 64-bit type 'long long'.
|
||||||
@ -611,4 +611,7 @@
|
|||||||
-- see the TODO.txt list for details)
|
-- see the TODO.txt list for details)
|
||||||
* Fix problems with Z16F and eZ80 compilation introduced with recent changes.
|
* Fix problems with Z16F and eZ80 compilation introduced with recent changes.
|
||||||
|
|
||||||
|
0.4.2 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -671,29 +671,26 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<p><b>nuttx-0.4.0</b>.
|
<p><b>nuttx-0.4.1</b>.
|
||||||
The 32<sup>nd</sup> release of NuttX (nuttx-0.4.10) is available for download
|
The 33<sup>rd</sup> release of NuttX (nuttx-0.4.1) is available for download
|
||||||
from the <a href="http://sourceforge.net/project/showfiles.php?group_id=189573">SourceForge</a>
|
from the <a href="http://sourceforge.net/project/showfiles.php?group_id=189573">SourceForge</a>
|
||||||
website.
|
website.
|
||||||
The change log associated with the release is available <a href="#currentrelease">here</a>.
|
The change log associated with the release is available <a href="#currentrelease">here</a>.
|
||||||
Unreleased changes after this release are available in CVS.
|
Unreleased changes after this release are available in CVS.
|
||||||
These unreleased changes are listed <a href="#pendingchanges">here</a>.
|
These unreleased changes are listed <a href="#pendingchanges">here</a>.
|
||||||
</p>
|
</p>
|
||||||
This release adds graphics support and a tiny windowing subsystem.
|
<p>
|
||||||
That new graphics subystem is documented in a <a href="NXGraphicsSubsystem.html">user manual</a>.
|
This is a minor bugfix release.
|
||||||
No other substantial changes were made.
|
The primary reason for this release is to correct numerous build errors that have accumulated for the ZiLOG ZDS-II based targets.
|
||||||
|
All ZDS-II targets now build correctly (but have not been re-tested).
|
||||||
|
In addition to platform-specific build failures, release also adds the following features which were not tested as of the time of the release:
|
||||||
|
<ul>
|
||||||
|
<li>Board support fot the ZiLog ez80Acclaim! ez80f910200zco Development Kit,</li>
|
||||||
|
<li>ZiLOG eZ80F91 EMAC driver</li>
|
||||||
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
The version number was bumped up to 0.4.0 in part to reflect the new graphics subsystem,
|
These changes were verified only on the NuttX simulation platform. Please report any errors to me.
|
||||||
but also to recognize the NuttX is approaching complete functionality. In the 0.3.x
|
|
||||||
versions, network support was added, Pascal P-code runtime support was added, FAT and
|
|
||||||
ROMFS filesystems were added, MMC/SD and USB device support were added. There were
|
|
||||||
also numerous extensions to the NuttShell, NuttX APIs, and architecture ports.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
These changes were verified only on the NuttX simulation platform with X11 windows
|
|
||||||
simulating a device framebuffer.
|
|
||||||
Please report any errors to me.
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<table width ="100%">
|
<table width ="100%">
|
||||||
@ -1250,16 +1247,18 @@ Other memory:
|
|||||||
</table>
|
</table>
|
||||||
|
|
||||||
<pre><ul>
|
<pre><ul>
|
||||||
nuttx-0.4.0 2008-12-06 Gregory Nutt <spudmonkey@racsa.co.cr>
|
nuttx-0.4.1 2009-02-06 Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
* Initial release of a tiny windowing system for NuttX
|
|
||||||
* Add fixed precision sin() and cos() (not well tested at initial check-in)
|
* Added board support fot the ZiLog ez80Acclaim! ez80f910200zco Development Kit.
|
||||||
* Add an X11-based simulated framebuffer driver
|
* Fixed several compilation errors in fixed precision math library when built
|
||||||
* The simulated target now has an option (CONFIG_SIM_WALLTIME) that will let the simulation
|
against toolchains that do not support 64-bit type 'long long'.
|
||||||
run in more-or-less realtime.
|
* Fix errors in some function prototypes in dirent.h
|
||||||
* Added more more extensive window support: frames, toolbars, etc.
|
* Add eZ80F91 EMAC driver
|
||||||
* Added support for bitmap fonts
|
* Fix recvfrom() compilation error -- only noted under ZDS
|
||||||
* Integrated the new font support with a font test in examples/nx
|
* Updated all ARM Make.def files to work with gcc 2.4.2 (However, there are
|
||||||
* Add documentation for NX graphics subsystem
|
still some build issues associated with that toolchain in use of arm-elf-objcopy
|
||||||
|
-- see the TODO.txt list for details)
|
||||||
|
* Fix problems with Z16F and eZ80 compilation introduced with recent changes.
|
||||||
|
|
||||||
pascal-0.1.2 2008-02-10 Gregory Nutt <spudmonkey@racsa.co.cr>
|
pascal-0.1.2 2008-02-10 Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
@ -1287,21 +1286,11 @@ buildroot-0.1.2 2007-11-06 <spudmonkey@racsa.co.cr>
|
|||||||
</table>
|
</table>
|
||||||
|
|
||||||
<pre><ul>
|
<pre><ul>
|
||||||
nuttx-0.4.1 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
nuttx-0.4.2 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
* Added board support fot the ZiLog ez80Acclaim! ez80f910200zco Development Kit.
|
|
||||||
* Fixed several compilation errors in fixed precision math library when built
|
|
||||||
against toolchains that do not support 64-bit type 'long long'.
|
|
||||||
* Fix errors in some function prototypes in dirent.h
|
|
||||||
* Add eZ80F91 EMAC driver
|
|
||||||
* Fix recvfrom() compilation error -- only noted under ZDS
|
|
||||||
* Updated all ARM Make.def files to work with gcc 2.4.2 (However, there are
|
|
||||||
still some build issues associated with that toolchain in use of arm-elf-objcopy
|
|
||||||
-- see the TODO.txt list for details)
|
|
||||||
* Fix problems with Z16F and eZ80 compilation introduced with recent changes.
|
|
||||||
|
|
||||||
pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
pascal-0.1.3 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
buildroot-0.1.3 2008-xx-xx <spudmonkey@racsa.co.cr>
|
buildroot-0.1.3 2009-xx-xx <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
* Add support for H8/300 toolchain
|
* Add support for H8/300 toolchain
|
||||||
* Add support for GCC 4.2.4 and binutils 2.19
|
* Add support for GCC 4.2.4 and binutils 2.19
|
||||||
|
17
ReleaseNotes
17
ReleaseNotes
@ -769,3 +769,20 @@ also numerous extensions to the NuttShell, NuttX APIs, and architecture ports.
|
|||||||
|
|
||||||
This tarball contains a complete CVS snapshot from December 6, 2008.
|
This tarball contains a complete CVS snapshot from December 6, 2008.
|
||||||
|
|
||||||
|
nuttx-0.4.1
|
||||||
|
^^^^^^^^^^^
|
||||||
|
|
||||||
|
This is the 33rd release of NuttX. This is a minor bugfix release. The primary reason
|
||||||
|
for this release is to correct numerous build errors that have accumulated for the ZiLOG
|
||||||
|
ZDS-II based targets. All ZDS-II targets now build correctly (but have not been re-tested).
|
||||||
|
In addition to platform-specific build failures, release also adds the following features
|
||||||
|
which were not tested as of the time of the release:
|
||||||
|
|
||||||
|
* Board support fot the ZiLog ez80Acclaim! ez80f910200zco Development Kit
|
||||||
|
* ZiLOG eZ80F91 EMAC driver
|
||||||
|
|
||||||
|
These changes were verified only on the NuttX simulation platform. Please report any errors
|
||||||
|
to me.
|
||||||
|
|
||||||
|
This tarball contains a complete CVS snapshot from Februrary 6, 2009.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user