aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-02-02 10:14:30 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-02-02 10:14:30 +0000
commit3673706148eb6e814cea89b228c996db0654af60 (patch)
tree26417dc306ffaacc8fc3debeac9ea87044100af4
parent75a75a7ddcdc0ea45941ecc7593900824a088715 (diff)
downloadChibiOS-3673706148eb6e814cea89b228c996db0654af60.tar.gz
ChibiOS-3673706148eb6e814cea89b228c996db0654af60.tar.bz2
ChibiOS-3673706148eb6e814cea89b228c996db0654af60.zip
Fixed bug 3602306.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5097 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/hal/platforms/STM32/OTGv1/usb_lld.h2
-rw-r--r--readme.txt1
2 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/OTGv1/usb_lld.h b/os/hal/platforms/STM32/OTGv1/usb_lld.h
index 3b8344e55..cb55894f5 100644
--- a/os/hal/platforms/STM32/OTGv1/usb_lld.h
+++ b/os/hal/platforms/STM32/OTGv1/usb_lld.h
@@ -106,7 +106,7 @@
/**
* @brief Dedicated data pump threads priority.
*/
-#if !defined(STM32_USB_OTG_THREAD_PRIORITY) || defined(__DOXYGEN__)
+#if !defined(STM32_USB_OTG_THREAD_PRIO) || defined(__DOXYGEN__)
#define STM32_USB_OTG_THREAD_PRIO LOWPRIO
#endif
diff --git a/readme.txt b/readme.txt
index 7cd483b38..c1c5b57bf 100644
--- a/readme.txt
+++ b/readme.txt
@@ -82,6 +82,7 @@
*****************************************************************************
*** 2.5.2 ***
+- FIX: Fixed #define typo in usb_lld.h (OTGv1) (bug 3602306).
- FIX: Fixed STM32F0 RCC enable/disable/reset functions for CRC and WWDG
(bug 3602150).
- FIX: Fixed missing parenthesis in use of macro arguments (bug 3601638).