From b8d64c65d447643e33f855e9c9dbde4454579d88 Mon Sep 17 00:00:00 2001 From: ot0tot <36753790+ot0tot@users.noreply.github.com> Date: Fri, 10 Jan 2025 13:55:16 -0500 Subject: [PATCH] Fix PPM timer in iFlight Blitz F435 (#663) PPM timer conflicted with motors 7 & 8. Moved to TIM9. --- configs/IFLIGHT_BLITZ_F435/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/IFLIGHT_BLITZ_F435/config.h b/configs/IFLIGHT_BLITZ_F435/config.h index 7d0af847..53c1166b 100644 --- a/configs/IFLIGHT_BLITZ_F435/config.h +++ b/configs/IFLIGHT_BLITZ_F435/config.h @@ -131,7 +131,7 @@ // TIMERS & DMA #define TIMER_PIN_MAPPING TIMER_PIN_MAP( 0, PA8, 1, 0 ) \ - TIMER_PIN_MAP( 1, PA3, 1, -1 ) \ + TIMER_PIN_MAP( 1, PA3, 3, -1 ) \ TIMER_PIN_MAP( 2, PB0, 2, 1 ) \ TIMER_PIN_MAP( 3, PB1, 2, 2 ) \ TIMER_PIN_MAP( 4, PC8, 2, 3 ) \