From 1e06c4820170b182351580f3754fbc89ad9540d0 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Tue, 21 May 2019 23:02:53 +0000 Subject: [PATCH] stm32l1: timer: fix typo in option mask definition Found while exploring documentation generation --- include/libopencm3/stm32/l1/timer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libopencm3/stm32/l1/timer.h b/include/libopencm3/stm32/l1/timer.h index f2e3cd6d..aa993e86 100644 --- a/include/libopencm3/stm32/l1/timer.h +++ b/include/libopencm3/stm32/l1/timer.h @@ -61,7 +61,7 @@ Trigger 1 Remap /** Internal Trigger 1 remapped to timer 5 TGO */ #define TIM2_OR_ITR1_RMP_TIM5_TGO (0x1 << 0) /**@}*/ -#define TIM3_OR_ITR1_RMP_MASK (0x1 << 0) +#define TIM2_OR_ITR1_RMP_MASK (0x1 << 0) /* --- TIMx_OR values ---------------------------------------------------- */