summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-27 19:23:40 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-27 19:23:40 +0000
commit645bd0a83bed8cc38fbf8fdd51f72217c69d9e5f (patch)
tree0e8f349ae4c03539e3dbd4036a73f8ad07f726cb /nuttx/ChangeLog
parent5143ed1c74e8f1817a7a8b62321cfe9a288741be (diff)
downloadnuttx-645bd0a83bed8cc38fbf8fdd51f72217c69d9e5f.tar.gz
nuttx-645bd0a83bed8cc38fbf8fdd51f72217c69d9e5f.tar.bz2
nuttx-645bd0a83bed8cc38fbf8fdd51f72217c69d9e5f.zip
Fix some NAK race conditions in control transfers (there are more)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5058 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index c4e914658..192af9dc3 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -3192,4 +3192,12 @@
* arch/arm/src/lpc17xx/lpc17_ethernet.c: Conditionally elide setting PHY
speed/duplex. This does not work for certain PHYs. Still some unresolved
issues (also from Kate).
+ * tools/Config.mk, Makefile, configs/*/Make.defs: Add a new Makefile
+ fragement to de-quoate certain strings from the Kconfig logic that
+ need to be used at path segments (Richard Cochran).
+ * arch/arm/src/stm32/stm32_usbotghost.c: The STM32 USB host driver only
+ works with debug turned on. The problem appears to be that with debug
+ OFF, there are more NAKs occuring in more places than before and this
+ reveals a variety of errors. This check in improves NAK robustness
+ for control transfers but does not resolve all of the issues.