diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index 56c90ef44b..870c64d098 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@
Last Updated: October 6, 2011
+Last Updated: November 12, 2011
nuttx-6.10 Release Notes: +
- The 77th release of NuttX, Version 6.10, was made on October 6, 2011, and is available for download from the
+ The 78th release of NuttX, Version 6.11, was made on November 12, 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
.
+ Note that the release consists of two tarballs: nuttx-6.11.tar.gz
and apps-6.11.tar.gz
.
Both may be needed (see the top-level nuttx/README.txt
file for build information)
The change log associated with the release is available here.
Unreleased changes after this release are available in SVN.
These unreleased changes are also listed here.
- This release includes a few new features and several important bug fixes. - The new features (some still incomplete) include: + This release is a maintenance release that includes a few new features + and some important bugfixes. New features include:
apps/Makefile
will now include external directories in the application build.
+ Bugfixes, order roughly on decreasing criticality include the following. - The first two bugs are consider critical. + The first two bugfixes are considered critical.
mq_timedsend()
and mq_timedrecieve()
.
- fopen()
for append modse was not appending.
+ fclose()
return value.
+ @@ -1281,15 +1266,20 @@
STATUS: - The MCU support logic is present but as of this writing has not been verified on hardware. - Because of the high degree of compatibility between the LPC313x and LPC315x family, it + Basic support is in place for both the LPC3152 MCU and the EA3152 board. + Verification of the port was deferred due to tool issues + However, because of the high degree of compatibility between the LPC313x and LPC315x family, it is very likely that the support is in place (or at least very close). + At this point, verification of the EA3152 port has been overcome by events and + may never happen. + However, the port is available for anyone who may want to use it.
STATUS: - This port is code complete and has begun testing. - Testing is, unfortunately, delayed until I obtain some additional test equipment - (you can't use PICkit 2 with the PIC32; you need PICkit 3. And, to make things worse, - my PICKit3 just hangs when I try to debug). + This port is code complete and partially testing. + Initial testing was, unfortunately, delayed due to test equipment issues. + In the mean time, I received the Sure Electronics and the Microchip PIC32 Ethernet Starter kit. + I expect that this port will be functional when those other ports are functional, but I have not revisited this.
STATUS: - This port is code complete and has begun testing. - I hope to use the on-board LEDs to work around the debug problems with the PCL Logic board (see above). - Update: Work on this board has stalled due to higher priority tasks. + This port is code complete and has considerable test testing. + The port for this board was nearly complete in NuttX 6.11, but still requires a few bug fixes before it will be ready for prime time. + Work is ongoing as time permits and I expect a solid port for this board in NuttX 6.12.
STATUS: This port was started a shelved... The Starter Kit (even with the MEB) has no serial port. - I will have to come up with a different bring-up strategy to work with this board. + I will have to come up with a different bring-up strategy to work with this board (probably using + an external MAX2232 board for UART support).
@@ -2615,93 +2606,64 @@ Other memory:-nuttx-6.10 2011-10-06 Gregory Nutt <gnutt@nuttx.org> +nuttx-6.11 2011-11-12 Gregory Nutt <gnutt@nuttx.org> - * lib/stdio/lib_fopen.c: Fix an error in fopen(); the file pointer was not - being positioned at the end of the file when the "a" and "a+" modes are - used. There are other issues with the "a+" modes (see the top-level TODO - list). - * drivers/usbdev/cdc_serial.c and include/nuttx/usb/cdc.h and cdc_serial.h: - Add support for the CDC ACM serial device class. - * fs/fat/fs_fat32.c: Fix a critical bug in the write logic: It a tiny write - cross a sector boundary, then two sector writes will occur. The first part - in the first sector may be written to the wrong sector number. - * fs/fat/fs_fat32util.c: Fix a stray write into the FAT (always sector 964 on - FAT32). This bug will cause some lost chains. I'm sure this bug could - corrupt files but at present, the only thing I have seen is that before - fixing this bug, the Windows chkdsk utility would report these lost chains. - * arch/arm/src/stm32/stm32_i2c.c: Driver can now operate in a faster polled - mode (at the expense of using more cpu cycles). - * arch/arm/src/stm32/stm32_i2c.c: Add trace debug capability. Enabled with - CONFIG_I2C_TRACE. - * arch/arm/src/stm32/stm32_i2c.c: Fix another bug where I2C conflicts with FSMC - being enabled. That time at the tail end of the transaction where there is - an unfinished stop condition. - * sched/mq_timedreceive.c and sched/mq_timedsend.c: The count of threads - waiting on the message queues was not being decremented after a timeout. - This would cause the accounting logic to become out of sync and the, perhaps, - an assertion to be triggered. This is an important bug and fixes a - potential crash when using mq_timedreceived() and mq_timedsend(). - * sched/mq_sndinternal.c: Related to the above, the send logic was incrementing - the wrong counter when it waited as part of the mq_timedsend.c logic. - * fs/fat: Fix an error in the long file name logic: If the long file name - is an even multiple of 13 bytes in length, then it should not include a - NULL terminating character. Fix contributed by Kaushal Parikh. - * configs/sim/nx11: Created a separate configuration to build the NX - example using the a simulated framebuffer driver on an X11 window. This - example has been verified on Ubuntu 9.09 (it does not work on Cygwin). - * arch/sim/src/up_touchscreen.c and up_x11eventloop.c: Adds support for a - simulated NuttX touchscreen device using mouse/pointer feedback from an - x11 window. - * configs/sim/touchscreen: Adds a configuration to verify the simulated - touchscreen driver (Does not work on Cygwin). - * configs/sam3u/touchscreen: This is the configuration that I plan to use - to verify the SAM3U-EK touchscreen driver. However, as of this writing, - there is no touchscreen driver for the board. - * CONFIG_RTC_HIRES: Add an option to support either a high-resolution RTC - that completely replaces the system timer tick but may overflow and lose - time when the MCU is off and also for a low-resolution (1 sec/tick) RTC - that can run until 2106 with no overflow. But in this latter case, higher - resolution time must come from the system timer. - * CONFIG_SYSTEM_UTC: Removed support for the UTC system timer. It just - doesn't do enough to be worth the CPU cycles or the complexity. - * CONFIG_SYSTEM_TIME16: Added support for an optional 64-bit system timer. - * fs/fat/fs_fat32util.c: Add support for FAT date/time stamps; Enabled via - CONFIG_FS_FATTIME. - * arch/arm/src/sam3u/sam3u_spi.c: Add an SPI driver for the AT91SAM3U. - * drivers/input/ads7843e.c and include/nuttx/input/ads7843e.h: Add a - driver for the TI ADS7843E touchscreen controller. - * fs/nxffs/nxffs_open.c: Fix an error when a file is open for writing; since - the file will get deleted it is already exists, there must be a check if - there are other open references to the file. - * arch/arm/src/stm32/stm32_sdio.c: Fixed an error where during SDHC - initialization interrupts were not being re-enabled. Caused more subtle - errors than you would think. - * arch/arm/src/stm32/stm32_i2c.c: Fixed an error where I2C timeouts appeared - to be successful transfers. - * configs/sim/nsh2: Add another simulated NSH configuration. This one - supports X11 graphics, C++, and exercises graphic functions as built-in - commands. + * arch/arm/stm32/Make.defs: Don't build stm32_rtc.c if CONFIG_RTC is not + selected. Doing so will cause errors if other configuration dependencies + are not met. + * configs/stm3210e-eval/src/up_lcd.c: Color corrections for SPFD5408B LCD + do not work with R61580 LCD. + * configs/pic32-starterkit: Beginning of a configuration for the Microchip + PIC32 Ethernet Starter Kit. Hmmm.. I don't have a clue how to test this + with no serial port?! + * lib/stdio/lib_fclose.c: fclose() always returns an error (EOF) when it + closes a read-only file. This is because it calls flush() which will + fail on read-only files. No harm is done other that a bad value is + returned. + * arch/sim/src/Makefile: Correct build issue for sim/nsh2 target. Old + libboard.a was not being cleaned. + * arch/mips/src/pic32mx/pic32mx-gpio*.c: Add GPIO support for the PIC32MX. + * configs/sure-pic32mx/src/up_leds.c and up_buttons.c: Add button and LED + support for the Sure Electronics PIC32MX board. + * configs/ea3152: Add a configuration for the Embedded Artists LPC3152 + daughter board (with the same base-board used with configs/ea3131) + * graphics/nxmu/nx_getrectangle.c, graphics/nxsu/nx_getrectangle.c, + graphics/mxtk/nx_getwindow.c, graphics/nxmu/nx_gettoobar.c: New + interfaces to read from graphics memory + * graphics/nxbe/nxbe_bitmap.c: Fix an error in the error handling that + can cause valid bitmaps to fail to render. + * include/nuttx/rgbcolors.h: Fix errors in some 16- and 8-bit color + conversion macros. + * tools/incdir.sh: Fix issues when g++ is used as the compiler. It was + not being recognized and handled properly. + * graphics/nxsu/nx_releasebkgd.c: Fix a bad cast that was causing + problems with the background window was released. + * fs/nxffs/nxffs_pack.c: Correct a critical bug in the NXFFS file system: + When repacking the filesystem, there was a missing check to see if an + inode structure would fit at the end of a block. This is a rare case + if the block size is large, but can be common for tiny block sizes + and results in a crash and file system corruption. + * fs/nxffs/nxffs_initialize.c: Fix an initialize error. If the FLASH + is on power-up, NXFFS will fail to initialize correctly. + * fs/nxffs/nxffs_write.c and nxffs_pack.c: Fix an error that can occur + when attempt to write to FLASH volume that is completely full but + has no value inodes on it. + * drivers/mtd/at24xx.c: Now supports a configurable block size that + supports using "clusters" of AT24 pages as blocks. This allows bigger + block sizes and more efficient use of EEPROM when the AT24 is used to + support a file system (such as NXFFS). (Contributed by Hal Glenn). + * include/nuttx/rgbcolors.h: More fixes to RGB color conversion + macros. + * arch/arm/src/common/up_createstack.c and up_usestack.c: For ARM EABI + the stack must be aligned to 8-byte boundaries. This is necessary for + passing aligned floating point values under EABI. Fix contributed by + David Sidrane. + * Numerous changes and fixes to the PIC32 interrupt handing logic. The + PIC32 port is almost complete but still not ready for prime time. -apps-6.10 2011-10-06 Gregory Nutt <gnutt@nuttx.org> +apps-6.11 2011-11-12 Gregory Nutt <gnutt@nuttx.org> - * apps/system/i2c: Add repitition and address auto-incrementing so that - and command can be executed numerous times. Add a new verify command - that will write to a register, read from register, and verify that - returned value. - * apps/graphics/tiff: Add a library that can be used to create TIFF files. - * apps/examples/tiff: Add a unit test for the TIFF file creation logic - * apps/examples/lcdrw: Add a test to verify if you can or can or read - data from an LCD correctly. - * apps/examples/usbterm: A USB terminal example.. more of a USB chat or - serial bridge: Data received on local console echoed via USB serial; - data received on USB serial is echoed on the local console. - * apps/examples/touchscreen: Add a simple, generic test for any - touschscreen driver. - * Makefile: The apps/ Makefile now checks for an apps/external directory - or symbolic link. If such a directory/link exists (and has a Makefile), - it will be added to the apps/ build. This allows external directories - to be included into the apps/ build by simply creating a symbolic link. + There were no major changes to the apps package in NuttX 6.11 pascal-1.0 2011-05-15 Gregory Nutt <gnutt@nuttx.org> @@ -2744,24 +2706,9 @@ buildroot-1.10 2011-05-06 <gnutt@nuttx.org>
-nuttx-6.11 2011-xx-xx Gregory Nutt <gnutt@nuttx.org> +nuttx-6.12 2011-xx-xx Gregory Nutt <gnutt@nuttx.org> - * arch/arm/stm32/Make.defs: Don't build stm32_rtc.c if CONFIG_RTC is not - selected. Doing so will cause errors if other configuration dependencies - are not met. - * configs/stm3210e-eval/src/up_lcd.c: Color corrections for SPFD5408B LCD - do not work with R61580 LCD. - * configs/pic32-starterkit: Beginning of a configuration for the Microchip - PIC32 Ethernet Starter Kit. Hmmm.. I don't have a clue how to test this - with no serial port?! - * lib/stdio/lib_fclose.c: fclose() always returns an error (EOF) when it - closes a read-only file. This is because it calls flush() which will - fail on read-only files. No harm is done other that a bad value is - returned. - * arch/sim/src/Makefile: Correct build issue for sim/nsh2 target. Old - libboard.a was not being cleaned. - -apps-6.11 2011-xx-xx Gregory Nutt <gnutt@nuttx.org> +apps-6.12 2011-xx-xx Gregory Nutt <gnutt@nuttx.org> pascal-3.1 2011-xx-xx Gregory Nutt <gnutt@nuttx.org>