Skip to content

Commit

Permalink
stmhal: Support PortG on SensorTile (STM32L476)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhylands committed Jan 11, 2017
1 parent e45035d commit 7e91216
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions stmhal/mphalport.c
Expand Up @@ -110,6 +110,12 @@ void mp_hal_gpio_clock_enable(GPIO_TypeDef *gpio) {
#endif
#if defined(GPIOG) && defined(__GPIOG_CLK_ENABLE)
} else if (gpio == GPIOG) {
#if defined(STM32L476xx) || defined(STM32L486xx)
// According to AN4555 (Getting started with STM32L4 series hardware
// development, Port G pins 2 thru 15 are powered using VddIO2 for the
// STM32L4x6 MCUs.
HAL_PWREx_EnableVddIO2();
#endif
__GPIOG_CLK_ENABLE();
#endif
#ifdef __GPIOH_CLK_ENABLE
Expand Down

0 comments on commit 7e91216

Please sign in to comment.