STM32U575 EXTI Interrupt usage
Hi
I'm using nucleo_u575zi board. Connected three external switches to PB0, PB1 & PB2 pins.
By default, the pins are low, the pins are configured as:
/*Configure GPIO pins : EXT_PIN3_Pin EXT_PIN1_Pin EXT_PIN2_Pin */
GPIO_InitStruct.Pin = EXT_PIN3_Pin|EXT_PIN1_Pin|EXT_PIN2_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_IT_RISING;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
The NVIC is also enabled. The EXT callback is not getting triggered, not sure what is the issue and how to verify that in debug mode whether it's getting called or not, can someone help me to debug and trace what might be the issue.
Attaching the main.c and .ioc files below.
Thankyou.
