Fixed bug 3536950.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4317 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2012-06-21 17:14:16 +00:00
parent 396ca2cc18
commit 20d6265518
2 changed files with 2 additions and 1 deletions

View File

@ -381,7 +381,7 @@ void icu_lld_start(ICUDriver *icup) {
nvicEnableVector(TIM8_CC_IRQn,
CORTEX_PRIORITY_MASK(STM32_ICU_TIM8_IRQ_PRIORITY));
nvicEnableVector(TIM8_UP_IRQn,
CORTEX_PRIORITY_MASK(STM32_ICU_TIM1_IRQ_PRIORITY));
CORTEX_PRIORITY_MASK(STM32_ICU_TIM8_IRQ_PRIORITY));
icup->clock = STM32_TIMCLK2;
}
#endif

View File

@ -79,6 +79,7 @@
*****************************************************************************
*** 2.4.2 ***
- FIX: Fixed wrong priority assigned to TIM8 in STM32 ICU driver (bug 3536950).
- FIX: Fixed TIM8 not working in STM32 GPT driver (bug 3536523).
- FIX: Fixed timer overflow not working in STM32 ICU driver for TIM1/TIM8 (bug
3536522).