User Activity

Using the STM DFU DLL's to load firmware onto some 3rd party custom hardware, we have to call  SelectCurrentConfiguaration becuase the bootloader in the hardware requires this before it allows the STM32F4xx ROM to be written to Normally this works OK...
Using the STM32Cube with a STM32F4, I set the SYSCLK to 96MhzWhich generates this code RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE|RCC_OSCILLATORTYPE_LSE; RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS; RCC_OscInitStruct.LSEState = RCC_LSE...
If I reduce the clock speed on a STM32F4 from 168Mhz to 96Mhz, with bus speeds reduced accordingly.Should the current consumption of the processor be reduced.I've been trying to take some current measurements, and there does not seem to be any reduct...
I need to generate PWM on a non-PWM pinI know one method is to use an ISR triggered by a timer, but because I need to run the PWM at 10kHz, this will put a huge load on the CPU just to toggle 1 pin.I've seen examples of using DMA to send data to the ...
I need to receive I2S from from a device which digitises microphone audio and acts as an I2S masterI have use the STM32 Cube configuation tool to set I2S3 as a Half-Duplex SlaveWhen I callHAL_I2S_Receive_IT()I the code receives the callback into void...
Kudos from