aboutsummaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-08-27 19:23:40 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-08-27 19:23:40 +0000
commit018beb7f1b41d99bdc728eade6d039ae3c1cc9c1 (patch)
tree0e8f349ae4c03539e3dbd4036a73f8ad07f726cb /nuttx/ChangeLog
parentba1adb705f9548c38be2964ae1c1b05cd463c68e (diff)
downloadpx4-firmware-018beb7f1b41d99bdc728eade6d039ae3c1cc9c1.tar.gz
px4-firmware-018beb7f1b41d99bdc728eade6d039ae3c1cc9c1.tar.bz2
px4-firmware-018beb7f1b41d99bdc728eade6d039ae3c1cc9c1.zip
Fix some NAK race conditions in control transfers (there are more)
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5058 7fd9a85b-ad96-42d3-883c-3090e2eb8679
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.