User Activity

I used CubeMX 6.12 to generate code and DAC output works as intended.I cloned that project, migrated to CubeMX 6.13 and generated code. DAC output doesn't work. Migration to 6.13 also used FW H5 1.4 instead of 1.3.Comparing stm32h5xx_hal_msp.c I see ...
Driving DAC1 channel 1 with         HAL_DAC_Start(&hdac1, DAC_CHANNEL_1); ... while (1) { HAL_DAC_SetValue(&hdac1, DAC_CHANNEL_1, DAC_ALIGN_12B_R, 4095UL); HAL_Delay(100UL); HAL_DAC_SetValue(&hdac1, DAC_CHANNEL_1, DAC_ALIGN_12B_R, 0UL); HAL_D...
Custom board with STM32H563 and 32.768KHz LSE and supercap for RTC in Vbat mode. I want RTC longevity in terms of weeks; it lasts 4 days. Is there anything SW can do to extend this time? For short intervals (minutes) the RTC updates fine. Disabling S...
I had a STM32CubeIDE v1.15.1 static library project against which I was linking with no problems. The static library project created the lib*.a file fine.After moving the project to a different workspace, the lib*.a file is no longer created. Instead...
ADC1 clocked @ 65 MHz, pre-scaler of 8, 7 channels active, 640.5 cycles/conversion, 256 oversampling, interrupts, scan mode. The numbers suggest all channels will be converted 1x in (8/65000000) * 640.5 * 7 * 256 = 141 ms. But when I look at uwTick b...