User Activity

Hello,I'm having a hard time debugging a hard fault I'm experiencing.The hard fault occurs in the handler of external interrupt. Here's it's code:extern "C" { void EXTI2_IRQHandler(void) { static uint32_t last_sample_time = 0; if (EXTI_GetITS...
I'm having a hard time tracking a source of the hard fault occuring in my program written in C++ for the STM32F405 microcontroller.I only use three sources of interrupts in this project - two timer interrupts (TIM2 overflow happening with 36kHz frequ...