User Activity

I'm setting up Dual Regular Simultaneous mode on my STM32H533RE and I cane across a problem. When the code is gerated, both MX_ADC1_Init() and MX_ADC2_Init() end up with this: /** Configure the ADC multi-mode*/// multimode.Mode = ADC_DUALMODE_REGSIMU...
So I've got a program with a fast tight loop doing some minimal things, and the rest is housekeeping/UI stuff in the main loop. When I enabled ICACHE, the speed of the tight loop increased DRAMATICALLY and overall the process is faster at basically e...
I'm trying to set up a MPU region to block out DCACHE from my SDMMC1 peripheral but I notice whenever a region is activiated in CubeMX, the "region start" field will not let me type any hex value in. Some red text below says that region start must AL...
Using STM32H533RE and successfully got SPI1 doing DMA transfers with HAL_SPI_Transmit_DMA() one shot at a time. As soon as I select Circular transfer and re-gen, the above function fails because a bunch of fields in my DMA_HandleType for that DMA cha...
It is my understanding from watching this video from ST: https://www.youtube.com/watch?v=Kx7yWVi8kbUThat many STM32 chips come with a built in bootloader in ROM that can be accessed by pulling the BOOT0 pin high. However, I just took a couple of bran...