User Activity

In our application, the LPS22HB has ODR=1Hz. Every 10 seconds the pressure is read from the device and converted to millibars. The pressure is generally around 990 mbar, and data collection is done over hours of time. At random times, the pressure...
The LPS22HB has an absolute pressure range of 260 - 1260 hPa. It's possible for the 24-bit pressure output value to fall outside that range. A value < 0x104000 is below 260 hPa, and a value above 0x4EC000 is above 1260 hPa. What should I do with a...
We are using the SDMMC interface in an STM32H7 device. The first call to HAL_MMC_WriteBlocks_DMA takes anywhere from 50-350ms to return. Susequent calls take 2-5ms to return. The long delay messes up the timing in our application. What is the rea...
We have a working design in an STM32F745 device that talks to an eMMC device over SDMMC.  We ported the design over to an STM32H743 device, using CubeMX to configure the device to match the F7, and the SDMMC interface doesn't work.  We've gone throug...
I'm running CubeMX 5.1 with FW_F4 V1.24.0 and Atollic TrueStudio 9.3.0. I have eleven RTOS tasks defined in CubeMX, but only one is actually invoked with its StartTask routine. As long as the priority on the task is osPriorityNormal(0) or lower, th...