/*! * Copyright (C) 2013 Uwe Bonnes (bon@elektron.ikp.physik.tu-darmstadt.de) * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * For additional information see http://www.ethernut.de/ */ /*! * \file arch/cm3/dev/stm/stm32_qenc32_0.c * \brief STM 32 bit quadrature encoder device 0 using 32-bit timer. * * Implement a 32 bit quadrature encode with an STM32 32-bit timer. The * encoder runs on it's own and uses no interrupts. * Attention : Configured values for the used pins are not checked here! * * Typical usage: * \code * #include * stm32_qenc32_0_init(); * ... * value = stm32_qenc32_0_get(); * ... * \endcode * * \verbatim * $Id: stm32_qenc32_0.c 5638 2014-04-07 13:58:48Z u_bonnes $ * \endverbatim */ #include #include #include #include #include #include /* Only compile code if needed defines are given*/ #if defined(STM32_QENC32_0_I_PORT) && defined(STM32_QENC32_0_I_PIN) &&\ defined(STM32_QENC32_0_Q_PORT) && defined(STM32_QENC32_0_Q_PIN) &&\ defined(STM32_QENC32_0_TIMER_ID) #if defined(STM32_QENC32_0_I_PORT) #define STM32_QENC32_I_PORT STM32_QENC32_0_I_PORT #endif #if defined(STM32_QENC32_0_I_PIN) #define STM32_QENC32_I_PIN STM32_QENC32_0_I_PIN #endif #if defined(STM32_QENC32_0_Q_PORT) #define STM32_QENC32_Q_PORT STM32_QENC32_0_Q_PORT #endif #if defined(STM32_QENC32_0_Q_PIN) #define STM32_QENC32_Q_PIN STM32_QENC32_0_Q_PIN #endif #if defined(STM32_QENC32_0_INVERT) #define STM32_QENC32_INVERT STM32_QENC32_0_INVERT #endif #if defined(STM32_QENC32_0_TIMER_ID) #undef STM32TIMER_ID #define STM32TIMER_ID STM32_QENC32_0_TIMER_ID #include #define STM32_QENC32_BASE STM32TIMER_BASE #define STM32_QENC32_CLK() STM32TIMER_CLK() #define STM32_QENC32_RST() STM32TIMER_RST() #define STM32_QENC32_I_AF STM32TIMER_AF(STM32_QENC32_I_PORT, STM32_QENC32_I_PIN) #define STM32_QENC32_Q_AF STM32TIMER_AF(STM32_QENC32_Q_PORT, STM32_QENC32_Q_PIN) #endif /*! * \brief Initialize the quadrature encoder * * No checking is done here! * * \param None. * * \return None. */ void stm32_qenc32_0_init(void) { STM32_QENC32_CLK(); STM32_QENC32_RST(); /* AN4013.pdf*/ /* Select Input T1->TI1FP1, T2->TI2FP2*/ /* Input polarity TI1FP1 non-inverted, TI1FP1=TI1, TI1FP2 non-inverted, TI1FP2= TI2*/ /* Register reset already done by reset */ /* Encoder mode 3*/ #if defined(STM32_QENC32_0_INVERT) TIM_CCEnable(STM32_QENC32_BASE) = TIM_CCER_CC1P; #endif TIM_SlaveModeControl(STM32_QENC32_BASE)= TIM_SMCR_SMS_1 | TIM_SMCR_SMS_0; TIM_AutoReloadValue(STM32_QENC32_BASE) = (uint32_t) -1; TIM_EventGeneration(STM32_QENC32_BASE) = TIM_EGR_UG; GpioPinConfigSet(STM32_QENC32_I_PORT, STM32_QENC32_I_PIN, GPIO_CFG_PULLDOWN | GPIO_CFG_PERIPHAL); GpioPinConfigSet(STM32_QENC32_Q_PORT, STM32_QENC32_Q_PIN, GPIO_CFG_PULLDOWN | GPIO_CFG_PERIPHAL); GPIO_PinAFConfig((GPIO_TypeDef*)STM32_QENC32_I_PORT, STM32_QENC32_I_PIN, STM32_QENC32_I_AF ); GPIO_PinAFConfig((GPIO_TypeDef*)STM32_QENC32_Q_PORT, STM32_QENC32_Q_PIN, STM32_QENC32_Q_AF ); TIM_StartTimer(STM32_QENC32_BASE); } /*! * \brief Return quadrature encoder value * * \param None. * * \return . */ int32_t stm32_qenc32_0_get(void) { return TIM_Counter(STM32_QENC32_BASE); } /*! * \brief Set quadrature encoder value * * \param Value to set. * * \return None. */ void stm32_qenc32_0_set(int32_t value) { TIM_StopTimer(STM32_QENC32_BASE); TIM_Counter(STM32_QENC32_BASE) = value; TIM_Update(STM32_QENC32_BASE); TIM_StartTimer(STM32_QENC32_BASE); } #endif