From f40d33139e0bd179b766d1576dfd7b494734ff67 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Fri, 7 Mar 2014 18:01:52 +0000 Subject: STM32 GPT enhancements. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6758 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/ports/STM32/LLD/TIMv1/gpt_lld.c | 4 ++-- os/hal/ports/STM32/LLD/TIMv1/gpt_lld.h | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'os') diff --git a/os/hal/ports/STM32/LLD/TIMv1/gpt_lld.c b/os/hal/ports/STM32/LLD/TIMv1/gpt_lld.c index b817c5d26..2852f383a 100644 --- a/os/hal/ports/STM32/LLD/TIMv1/gpt_lld.c +++ b/os/hal/ports/STM32/LLD/TIMv1/gpt_lld.c @@ -602,10 +602,10 @@ void gpt_lld_start(GPTDriver *gptp) { /* Timer configuration.*/ gptp->tim->CR1 = 0; /* Initially stopped. */ - gptp->tim->CR2 = STM32_TIM_CR2_CCDS; /* DMA on UE (if any). */ + gptp->tim->CR2 = gptp->config->cr2; gptp->tim->PSC = psc; /* Prescaler value. */ gptp->tim->DIER = gptp->config->dier & /* DMA-related DIER bits. */ - STM32_TIM_DIER_IRQ_MASK; + ~STM32_TIM_DIER_IRQ_MASK; gptp->tim->SR = 0; /* Clear pending IRQs. */ } diff --git a/os/hal/ports/STM32/LLD/TIMv1/gpt_lld.h b/os/hal/ports/STM32/LLD/TIMv1/gpt_lld.h index 56dc04f6b..4a914133e 100644 --- a/os/hal/ports/STM32/LLD/TIMv1/gpt_lld.h +++ b/os/hal/ports/STM32/LLD/TIMv1/gpt_lld.h @@ -386,6 +386,11 @@ typedef struct { */ gptcallback_t callback; /* End of the mandatory fields.*/ + /** + * @brief TIM CR2 register initialization data. + * @note The value of this field should normally be equal to zero. + */ + uint32_t cr2; /** * @brief TIM DIER register initialization data. * @note The value of this field should normally be equal to zero. -- cgit v1.2.3