git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9765 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-09-13 13:14:03 +00:00
parent f676b7cb31
commit 577d33e530
2 changed files with 3 additions and 0 deletions

View File

@ -863,6 +863,7 @@ void gpt_lld_polled_delay(GPTDriver *gptp, gptcnt_t interval) {
gptp->tim->ARR = (uint32_t)(interval - 1); /* Time constant. */
gptp->tim->EGR = STM32_TIM_EGR_UG; /* Update event. */
gptp->tim->SR = 0; /* Clear pending IRQs. */
gptp->tim->CR1 = STM32_TIM_CR1_OPM | STM32_TIM_CR1_URS | STM32_TIM_CR1_CEN;
while (!(gptp->tim->SR & STM32_TIM_SR_UIF))
;

View File

@ -126,6 +126,8 @@
- RT: Merged RT4.
- NIL: Merged NIL2.
- NIL: Added STM32F7 demo.
- HAL: Fixed function gpt_lld_polled_delay() is broken on STM32 (bug #775)
(backported to 16.1.6, 3.0.6).
- HAL: Fixed invalid output initialization for STM32 DACx channels 2
(bug #773)(backported to 16.1.6).
- HAL: Fixed CAN inclusion path missing for STM32F107 (bug #772)(backported