Hello community,It is possible that an interrupt will be nested over itsef?I mean, I have one interrupt EXTI0_IRQHandler() and inside the interrupt I am waiting an event that requires the execution of the same interrupt. I read the PM0214 and it is s...
I read 0xE8 at the MC_STATE0 register from the S2-LP. The associated state 0x74 (0xE8>>1), doesn't match with any of the possible states:typedef enum { MC_STATE_READY =0x00, /*!< READY */ MC_STATE_SLEEP_NOFIFO =0x01, /*!< SLEEP NO FIFO RETENT...
I think I am having this problem with the STM32H723 MCU. I am writing a flashword (32bytes) on the flash with some bytes to 0xFF. After a time, I want to change the value of the 0xFF bytes but I get a ECC double detection error. But with a STM32F4 MC...
I think as TDK said that it is not possible to have the same interrupt nested inside itself. I did a workaround to solve the situation.Thank you all for your answers.