Facing issues with interrupts
Hi,
I face some issue with the interrupts of STM32L452RET6P. I have two codes running in the controller one is a custom bootloader code and other is an application code which stored in flash memory. when the device get reset it will run the custom bootloader application which is at 0x08000000. It uses TIMER6 and UART2 in interrupts with 1 and 2 priority respectively. As per the flow if there is no uart interrupts triggered with in the defined time the device will jump to the application code which is at a different flash location. This works fine for me, and the application code also starts running,
But the interrupts are not triggering, I use RTC wakeup, UART2, TIMER6 and EXTI interrupts in the application code with priorities 1,2,3 and 4 respectively, my code is stuck in the while(1). Issue is only with interrupts, I checked with and LED Blink code it works fine.
what may be the reason for this issue?