summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm32f4discovery/src/up_qencoder.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-25 00:19:13 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-25 00:19:13 +0000
commit30e08be6ab603e1ea2b6e93f7363f0cf2e1e42e2 (patch)
treecced45cb9ff788c7f8c05577764856ac8ec8d071 /nuttx/configs/stm32f4discovery/src/up_qencoder.c
parentcd7ab15d6faca00ad56a3cc55613a1529790aa1c (diff)
downloadpx4-nuttx-30e08be6ab603e1ea2b6e93f7363f0cf2e1e42e2.tar.gz
px4-nuttx-30e08be6ab603e1ea2b6e93f7363f0cf2e1e42e2.tar.bz2
px4-nuttx-30e08be6ab603e1ea2b6e93f7363f0cf2e1e42e2.zip
Fixes for the STM32 quadrature encoder
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4422 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/stm32f4discovery/src/up_qencoder.c')
-rw-r--r--nuttx/configs/stm32f4discovery/src/up_qencoder.c59
1 files changed, 51 insertions, 8 deletions
diff --git a/nuttx/configs/stm32f4discovery/src/up_qencoder.c b/nuttx/configs/stm32f4discovery/src/up_qencoder.c
index 60d4d760e..4963dadb7 100644
--- a/nuttx/configs/stm32f4discovery/src/up_qencoder.c
+++ b/nuttx/configs/stm32f4discovery/src/up_qencoder.c
@@ -55,21 +55,64 @@
* Definitions
************************************************************************************/
/* Configuration *******************************************************************/
-/* The following checks assum that the quadrature encoder is on TIM2. Make the
- * appropriate changes if your configuration differes.
- */
+/* Check if we have a timer configured for quadrature encoder -- assume YES. */
#define HAVE_QENCODER 1
-#ifndef CONFIG_QENCODER
-# undef HAVE_QENCODER
-#endif
+/* If TIMn is not enabled (via CONFIG_STM32_TIMn), then the configuration cannot
+ * specify TIMn as a quadrature encoder (via CONFIG_STM32_TIMn_QE).
+ */
+#ifndef CONFIG_STM32_TIM1
+# undef CONFIG_STM32_TIM1_QE
+#endif
#ifndef CONFIG_STM32_TIM2
+# undef CONFIG_STM32_TIM2_QE
+#endif
+#ifndef CONFIG_STM32_TIM3
+# undef CONFIG_STM32_TIM3_QE
+#endif
+#ifndef CONFIG_STM32_TIM4
+# undef CONFIG_STM32_TIM4_QE
+#endif
+#ifndef CONFIG_STM32_TIM5
+# undef CONFIG_STM32_TIM5_QE
+#endif
+#ifndef CONFIG_STM32_TIM8
+# undef CONFIG_STM32_TIM8_QE
+#endif
+
+/* If the upper-half quadrature encoder driver is not enabled, then we cannot
+ * support the quadrature encoder.
+ */
+
+#ifndef CONFIG_QENCODER
# undef HAVE_QENCODER
#endif
-#ifndef CONFIG_STM32_TIM2_QE
+/* Which Timer should we use, TIMID={1,2,3,4,5,8}. If multiple timers are
+ * configured as quadrature encoders, this logic will arbitrarily select
+ * the lowest numbered timer.
+ *
+ * At least one TIMn, n={1,2,3,4,5,8}, must be both enabled and configured
+ * as a quadrature encoder in order to support the lower half quadrature
+ * encoder driver. The above check assures that if CONFIG_STM32_TIMn_QE
+ * is defined, then the correspdonding TIMn is also enabled.
+ */
+
+#if defined CONFIG_STM32_TIM1_QE
+# define TIMID 1
+#elif defined CONFIG_STM32_TIM2_QE
+# define TIMID 2
+#elif defined CONFIG_STM32_TIM3_QE
+# define TIMID 3
+#elif defined CONFIG_STM32_TIM4_QE
+# define TIMID 4
+#elif defined CONFIG_STM32_TIM5_QE
+# define TIMID 5
+#elif defined CONFIG_STM32_TIM8_QE
+# define TIMID 8
+#else
# undef HAVE_QENCODER
#endif
@@ -128,7 +171,7 @@ int qe_devinit(void)
/* Initialize a quadrature encoder interface. */
qevdbg("Initializing the quadrature encoder\n");
- ret = stm32_qeinitialize("/dev/qe0", 2);
+ ret = stm32_qeinitialize("/dev/qe0", TIMID);
if (ret < 0)
{
qedbg("stm32_qeinitialize failed: %d\n", ret);