Skip to main content
Visitor II
December 21, 2024
Solved

LED toggling

  • December 21, 2024
  • 2 replies
  • 978 views

I am using NUCLEO-U575ZI-Q eval board. I am trying to blink RGB LEDs. But RED LED which is connected GPIOG pin 2 is not toggling.

    This topic has been closed for replies.
    Best answer by Tesla DeLorean

    Have you used commands to enable the VDDIO2 power to the GPIOG bank?

    No code shown

    HAL_PWREx_EnableVddIO2();

     

    #define LED3_PIN GPIO_PIN_2
    #define LED3_GPIO_PORT GPIOG
    #define LED3_GPIO_CLK_ENABLE() __HAL_RCC_GPIOG_CLK_ENABLE()
    #define LED3_GPIO_CLK_DISABLE() __HAL_RCC_GPIOG_CLK_DISABLE()

    2 replies

    Graduate II
    December 21, 2024

    Have you used commands to enable the VDDIO2 power to the GPIOG bank?

    No code shown

    HAL_PWREx_EnableVddIO2();

     

    #define LED3_PIN GPIO_PIN_2
    #define LED3_GPIO_PORT GPIOG
    #define LED3_GPIO_CLK_ENABLE() __HAL_RCC_GPIOG_CLK_ENABLE()
    #define LED3_GPIO_CLK_DISABLE() __HAL_RCC_GPIOG_CLK_DISABLE()

    Graduate
    January 28, 2025

    I had the same issue. Adding a call to HAL_PWREx_EnableVddIO2() fixed it. Thank you.

    Super User
    December 21, 2024

    Welcome to the forum.

    More details required - see: How to write your question to maximize your chances to find a solution

     


    @Gopals0108 wrote:

    RED LED which is connected GPIOG pin 2 is not toggling.


    Have you checked (board User Manual & Schematics) that there's nothing else on the board occupying those pins?