fixing port I

This commit is contained in:
rusefillc 2021-01-22 23:31:21 -05:00
parent 97cc6e4e1f
commit c069f1c959
1 changed files with 15 additions and 0 deletions

View File

@ -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 */
};
/**