User Activity

Hello everyone, I am implementing a DMX interface on a STM32G071K8. You will find information about DMX here: https://www.thedmxwiki.com/dmx_basics/dmx_timingAn UART interface is used to get DMX data. • I am used to use the Frame Error detection ...
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...