Fixed bug #1243.
@@ -897,7 +897,7 @@ | ||
897 | 897 | nvicDisableVector(STM32_OTG2_NUMBER); |
898 | 898 | rccDisableOTG_HS(); |
899 | 899 | #if defined(BOARD_OTG2_USES_ULPI) |
900 | - rccDisableOTG_HSULPI() | |
900 | + rccDisableOTG_HSULPI(); | |
901 | 901 | #endif |
902 | 902 | } |
903 | 903 | #endif |
@@ -74,6 +74,7 @@ | ||
74 | 74 | ***************************************************************************** |
75 | 75 | |
76 | 76 | *** 20.3.5 *** |
77 | +- FIX: Fixed missing semicolon in STM32 OTGv1 driver (bug #1243). | |
77 | 78 | - FIX: Fixed HSI48 not enabled for STM32L496/4A6 (bug #1242). |
78 | 79 | - FIX: Fixed problem in STM32 gpt_lld_polled_delay() implementation (bug #1241). |
79 | 80 | - FIX: Fixed invalid delay loop in STM32G0/WL ADCv5 driver (bug #1240). |
@@ -897,7 +897,7 @@ | ||
897 | 897 | nvicDisableVector(STM32_OTG2_NUMBER); |
898 | 898 | rccDisableOTG_HS(); |
899 | 899 | #if defined(BOARD_OTG2_USES_ULPI) |
900 | - rccDisableOTG_HSULPI() | |
900 | + rccDisableOTG_HSULPI(); | |
901 | 901 | #endif |
902 | 902 | } |
903 | 903 | #endif |
@@ -75,6 +75,7 @@ | ||
75 | 75 | |
76 | 76 | *** 21.11.3 *** |
77 | 77 | - NEW: Added EFL driver support for STM32F401/411. |
78 | +- FIX: Fixed missing semicolon in STM32 OTGv1 driver (bug #1243). | |
78 | 79 | - FIX: Fixed HSI48 not enabled for STM32L496/4A6 (bug #1242). |
79 | 80 | - FIX: Fixed problem in STM32 gpt_lld_polled_delay() implementation (bug #1241). |
80 | 81 | - FIX: Fixed invalid delay loop in STM32G0/WL ADCv5 driver (bug #1240). |
@@ -897,7 +897,7 @@ | ||
897 | 897 | nvicDisableVector(STM32_OTG2_NUMBER); |
898 | 898 | rccDisableOTG_HS(); |
899 | 899 | #if defined(BOARD_OTG2_USES_ULPI) |
900 | - rccDisableOTG_HSULPI() | |
900 | + rccDisableOTG_HSULPI(); | |
901 | 901 | #endif |
902 | 902 | } |
903 | 903 | #endif |
@@ -130,6 +130,8 @@ | ||
130 | 130 | - NEW: Increased stacks size in RT test suite from 128 to 192. added an |
131 | 131 | option to override the stack size by defining THREADS_STACK_SIZE |
132 | 132 | in the makefile. |
133 | +- FIX: Fixed missing semicolon in STM32 OTGv1 driver (bug #1243) | |
134 | + (backported to 20.3.5)(backported to 21.11.3). | |
133 | 135 | - FIX: Fixed HSI48 not enabled for STM32L496/4A6 (bug #1242) |
134 | 136 | (backported to 20.3.5)(backported to 21.11.3). |
135 | 137 | - FIX: Fixed problem in STM32 gpt_lld_polled_delay() implementation (bug #1241) |