Not getting interrupt on stm32L5
Hi ST Team,
I have used STM32L562-edk EVK for code development. I have configured gpio as a interrupt pin. When Interrupt is generated I have not getting interrupt in ISR routine. I have validated pin using read the gpio and get as expected behavior. I have implemented below ISR.
void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
{
// Toggle LED
}
Please help me to debug this issue.