User Activity

I'm attempting to optimize the amount of instructions/time it takes to move data from CPU to GPIO. When doing ODR = X, I lose about 40ns, closer to 80 because I need to use 2 ODR writes to different ports and in general ODR output seems to sit at abo...
I noticed some issues with latency in my project and I do not know exactly where the latency is coming from. I'm also driving the chip hard, it's overclocked to 540Mhz. In the below blog post I came across a blurb status that there is some debugger s...
I would like to remove the CM7 from having to be involved in this toggle. Should it be possible to toggle the direction through DMA? Is there anything special that needs to happen for this to work? // Switch to output. GPIOA->MODER = ...
After attempting to code it up myself and after it didn't work attempted to verify using CubeMX.I have 2 questions:CubeMX does not give me the ability to select Alternate Function 2 on GPIOB pin 1 as input for TIM3_CH4, while Datasheet - STM32H750VB ...
I'm a bit confused what ISR==0 means in a DMA IRQ handler. I can skip it but wonder if something is configured incorrectly. Is "ISR==0" an expected and valid case or do I need to delve into settings? No error code is set, I am funneling all BDMA ISRs...