From fc15eb979b7081b90dab8543b483af1e2bc87436 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Fri, 22 Jan 2021 23:31:21 -0500 Subject: [PATCH] fixing port I --- firmware/hw_layer/ports/stm32/stm32_pins.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/firmware/hw_layer/ports/stm32/stm32_pins.cpp b/firmware/hw_layer/ports/stm32/stm32_pins.cpp index 893708cda8..9ceeec46c9 100644 --- a/firmware/hw_layer/ports/stm32/stm32_pins.cpp +++ b/firmware/hw_layer/ports/stm32/stm32_pins.cpp @@ -44,6 +44,21 @@ static ioportid_t ports[] = {GPIOA, #else nullptr, #endif /* STM32_HAS_GPIOH */ +#if STM32_HAS_GPIOI + GPIOI, +#else + nullptr, +#endif /* STM32_HAS_GPIOI */ +#if STM32_HAS_GPIOJ + GPIOJ, +#else + nullptr, +#endif /* STM32_HAS_GPIOJ */ +#if STM32_HAS_GPIOK + GPIOK, +#else + nullptr, +#endif /* STM32_HAS_GPIOK */ }; /**