__disable_irq() and __enable_irq() has no effect
Hello, I am working on a project with an STM32f446 and I need to disable all interrupts while executing a specific critical function. I put in my code the following lines : __disable_irq(); Critical_function(); __enable_irq();But I still...