2024-12-20 10:10 PM
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.
2024-12-20 10:16 PM - edited 2024-12-21 07:30 AM
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()
2024-12-21 02:43 AM - edited 2024-12-21 03:26 AM
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?