git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9913 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-11-15 10:57:59 +00:00
parent f45ab029d7
commit af63b0cedc
2 changed files with 3 additions and 1 deletions

View File

@ -829,7 +829,7 @@ void gpt_lld_start_timer(GPTDriver *gptp, gptcnt_t interval) {
gptp->tim->SR = 0; /* Clear pending IRQs. */ gptp->tim->SR = 0; /* Clear pending IRQs. */
if (NULL != gptp->config->callback) if (NULL != gptp->config->callback)
gptp->tim->DIER |= STM32_TIM_DIER_UIE; /* Update Event IRQ enabled.*/ gptp->tim->DIER |= STM32_TIM_DIER_UIE; /* Update Event IRQ enabled.*/
gptp->tim->CR1 = STM32_TIM_CR1_URS | STM32_TIM_CR1_CEN; gptp->tim->CR1 = STM32_TIM_CR1_ARPE | STM32_TIM_CR1_URS | STM32_TIM_CR1_CEN;
} }
/** /**

View File

@ -73,6 +73,8 @@
***************************************************************************** *****************************************************************************
*** 16.1.6 *** *** 16.1.6 ***
- HAL: Fixed missing ARPE bit in CR1 initialization on STM32 GPT driver
(bug #791).
- HAL: Fixed wrong DMA definition for STM32F303x8 ADC (bug #790). - HAL: Fixed wrong DMA definition for STM32F303x8 ADC (bug #790).
- VAR: Fixed GCC garbage collector discards code in syscalls.c (bug #789). - VAR: Fixed GCC garbage collector discards code in syscalls.c (bug #789).
- HAL: Fixed Makefile dependencies not generated for .S files (bug #787). - HAL: Fixed Makefile dependencies not generated for .S files (bug #787).