summaryrefslogtreecommitdiff
path: root/nuttx/ReleaseNotes
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-10-06 20:39:57 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-10-06 20:39:57 +0000
commit1c153586f33117ed8ab8604313dd95a8ee83c75f (patch)
tree01e932fc743ac23560057c83a7712cc780cf671c /nuttx/ReleaseNotes
parenta86c6fdce147a871e8816f2ad6fa30393770411a (diff)
downloadpx4-nuttx-1c153586f33117ed8ab8604313dd95a8ee83c75f.tar.gz
px4-nuttx-1c153586f33117ed8ab8604313dd95a8ee83c75f.tar.bz2
px4-nuttx-1c153586f33117ed8ab8604313dd95a8ee83c75f.zip
Prep for 6.10 releasenuttx-6.10
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4028 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ReleaseNotes')
-rw-r--r--nuttx/ReleaseNotes66
1 files changed, 65 insertions, 1 deletions
diff --git a/nuttx/ReleaseNotes b/nuttx/ReleaseNotes
index 3fdc9e7c3..cee318ebe 100644
--- a/nuttx/ReleaseNotes
+++ b/nuttx/ReleaseNotes
@@ -2230,7 +2230,7 @@ See the Changelog for additional changes included in this release.
NuttX-6.9
^^^^^^^^^
-The 76th release of NuttX, Version 6.8, was made on September 11, 2011
+The 76th release of NuttX, Version 6.9, was made on September 11, 2011
and is available for download from the SourceForge website. Note
that release consists of two tarballs: nuttx-6.9.tar.gz and
apps-6.9.tar.gz. Both may be needed (see the top-level nuttx/README.txt
@@ -2296,3 +2296,67 @@ Bugfixes, order roughly on decreasing criticality include:
* Build System: Use of -print-libgcc-file-name to get path to
libgcc.a might select the wrong libgcc.a if a multilib toolchain
is used
+
+NuttX-6.10
+^^^^^^^^^^
+
+The 77th release of NuttX, Version 6.10, was made on October 6, 2011
+and is available for download from the SourceForge website. Note
+that release consists of two tarballs: nuttx-6.10.tar.gz and
+apps-6.10.tar.gz. Both may be needed (see the top-level nuttx/README.txt
+file for build information).
+
+This release includes a few new features and several important bug fixes.
+The new features (some still incomplete) include:
+
+ * CDC ACM serial class device-side driver
+
+ * RTC: Now supports hi-res and lo-res hardware RTC. The lo-res RTC
+ runs at 1Hz.
+
+ * STM32 I2C driver. Now supports faster, polled mode of operation.
+ Added an I2C trace capability.
+
+ * ADS7843E touchscreen driver. As used on the SAM3U-EK development
+ board.
+
+ * AT91SAM3U SPI driver. To support the ADS7843E toucscreen
+
+ * X11 Support on simulation target. Build errors in the X11 windows
+ for the simulated target have been correct. Added support for a
+ simulated touchscreen on the X11 window (based on mouse inputs).
+
+ * System Timer. Added support for a 64-bit system timer.
+
+ * TIFF Support. Added a TIFF library (currently used for storing
+ LCD screen shots).
+
+ * LCD Support. Added a test to verify that we read and write correct
+ to LCD GRAM memory.
+
+ * I2C tool. Extended to support to include a verify command and
+ repititions and auto-address increment for most commands.
+
+ * USB terminal example. Line oriented serial bridge connects a host
+ USB serial terminal to a host UART serial terminal.
+
+ * Build System. apps/ Makefile will now include external directories
+ in the application build.
+
+Bugfixes, order roughly on decreasing criticality include:
+
+ * Message Queues. Correct errors in mq_timedsend() and
+ mq_timedrecieve().
+
+ * FAT. Writes that cross sector boundaries, stray write into the FAT,
+ and a FAT long file name issue
+
+ * NXFFS. Added a missed error check. Files cannot be opened for
+ writing if they are already opened for reading.
+
+ * Library: fopen() for append modse was not appending.
+
+ * STM32 I2C driver. Correct another conflict between concurrent FSMC
+ and I2C1 accesses. Fixed some bad error detection logic.
+
+ * STM32 SDHC driver. Interrupts were being left disabled.