From 72b73ecde56a9381de47671e7ea344aa355428de Mon Sep 17 00:00:00 2001 From: ot0tot <36753790+ot0tot@users.noreply.github.com> Date: Tue, 23 Jul 2024 14:48:29 -0400 Subject: [PATCH] Fix incorrect timer assignment Motor 3 was set to AF3 (TIM8_CH3N) for some reason. --- configs/TMOTORF7/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/TMOTORF7/config.h b/configs/TMOTORF7/config.h index 1d6cfa9b..ec00f79e 100644 --- a/configs/TMOTORF7/config.h +++ b/configs/TMOTORF7/config.h @@ -89,7 +89,7 @@ #define TIMER_PIN_MAPPING \ TIMER_PIN_MAP( 0, PC6 , 1, 0) \ TIMER_PIN_MAP( 1, PC7 , 1, 0) \ - TIMER_PIN_MAP( 2, PB0 , 3, 0) \ + TIMER_PIN_MAP( 2, PB0 , 2, 0) \ TIMER_PIN_MAP( 3, PB1 , 2, 0) \ TIMER_PIN_MAP( 4, PB6 , 1, 0) \ TIMER_PIN_MAP( 5, PB8 , 1, 0) \