Fixed Bug #782.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9844 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
ad5698304e
commit
a11278381e
|
@ -322,7 +322,10 @@ void ext_lld_exti_irq_enable(void) {
|
|||
#if defined(STM32F10X_CL)
|
||||
/* EXTI vectors specific to STM32F1xx Connectivity Line.*/
|
||||
nvicEnableVector(OTG_FS_WKUP_IRQn, STM32_EXT_EXTI18_IRQ_PRIORITY);
|
||||
#if defined(STM32F107xC)
|
||||
/* EXTI vectors specific to STM32F107 Connectivity Line.*/
|
||||
nvicEnableVector(ETH_WKUP_IRQn, STM32_EXT_EXTI19_IRQ_PRIORITY);
|
||||
#endif
|
||||
#elif defined(STM32F10X_MD_VL) || defined(STM32F10X_HD_VL)
|
||||
/* EXTI vectors specific to STM32F1xx Value Line.*/
|
||||
#else
|
||||
|
|
|
@ -73,6 +73,7 @@
|
|||
*****************************************************************************
|
||||
|
||||
*** 16.1.6 ***
|
||||
- HAL: Fixed STM32F105 port not compiling. (bug #782).
|
||||
- HAL: Fixed wrong registry for STM32F205xx and STM32F215xx port
|
||||
(bug #780).
|
||||
- HAL: Fixed wrong HSE checks and PLL2 enable switch in STM32F105 and
|
||||
|
|
Loading…
Reference in New Issue