summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-28 17:34:57 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-28 17:34:57 +0000
commitf1b1e3ba11994bcbb0a1ddad9f8e686a6a9ae475 (patch)
treefb9adb1354dc4750e3c3ac80e0f36cfd47c9e95c /nuttx/ChangeLog
parent9d573948f4778bcb167e9a2a083bba35f339affd (diff)
downloadnuttx-f1b1e3ba11994bcbb0a1ddad9f8e686a6a9ae475.tar.gz
nuttx-f1b1e3ba11994bcbb0a1ddad9f8e686a6a9ae475.tar.bz2
nuttx-f1b1e3ba11994bcbb0a1ddad9f8e686a6a9ae475.zip
Fixes to STM32 SPI, USB MSC class driver, and MMC/SD SPI driver from Petteri Aimonen
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5688 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog19
1 files changed, 15 insertions, 4 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index dea9e937b..db909eab2 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -4205,12 +4205,23 @@
* configs/ekk-lm3s9b96/ostest and nsh: All EKK-LM3S9B96 configurations
converted to use the mconf configuration tool.
* configs/zkit-arm-1769: Add support for Zilogic System's ARM development
- Kit, ZKIT-ARM-1769.
+ Kit, ZKIT-ARM-1769. From Rashid.
* configs/zkit-arm-1769/hello: Add a "Hello, World!" configuration for
- the KBIT-ARM-1769 board.
+ the KBIT-ARM-1769 board. From Rashid.
* configs/zkit-arm-1769/thttpd: Add a THTTPD configuration for the
- KBIT-ARM-1769 board.
+ KBIT-ARM-1769 board. From Rashid.
* 2013-02-27: All configurations for the Cortex-M0 NuTINY-SDK-NUC120
appear to be functional and stable.
* configs/zkit-arm-1769/nsh: Add an NSH configuration for the
- KBIT-ARM-1769 board.
+ KBIT-ARM-1769 board. From Rashid.
+ * arch/arm/src/stm32/stm32_otgfsdev.c: Fixes from Petterri Aimonen
+ related to corner cases that can cause infinite interrupts.
+ * drivers/usbdev/usbmsc_scsi.c: Change to allow the full name in the
+ USB descriptor but a truncated, 8-byte name in the SCSI field.
+ From Petteri Aimonen.
+ * arch/arm/src/stm32/stm32_spi.c: Need to clear error flags to prevent
+ corruption of subsequent transfers. Also, bit count should not be
+ changed while the SPI peripheral is enabled. From Petteri Aimonen.
+ * drivers/mmcsd/mmcsd_spi.c: When bus is shared, the speed has to be
+ set every time. Also SD cards require a few dummy clocks to react
+ into CS release. From Petteri Aimonen.