User Activity

I use CubeMX to generate the set up code for clocks and peripherals in the STM32H7A3 I'm currently using for my current work.  I'd like to calculate the timer and low-power timer call back periods programmatically without having to type in magic numb...
I'm rewriting some of my old LL code to use HAL and having trouble getting the RTC to read time correctly. I have a simple test project where I'm calling HAL_RTC_GetTime() and HAL_RTC_GetDate() before and after a call to HAL_Delay() with the expectat...
I upgraded STM32CubeIDE to version 1.14.1 today and can no longer connect with my target.  The process  of updating CubeIDE also updated my STLink-V3PWR debugger to V3PWR V4.J3.B1.P4.  Now, programs that downloaded and ran just fine yesterday won't d...
I'm bringing up a new board using a STM32H7A3. I've developed, downloaded, debugged and run lots of test programs from the VisualGDB IDE.  Now I'm working on the main application. I can still develop, download, debug and run from VisualGDB but when I...
I have the low power timer LPTIM1 working on a STM32H7A3 but the way I have to clear the IRQs is a little confusing.  Here's my IRQHandler:void LPTIM1_IRQHandler(void) { //Disable LPTIM1 CLEAR_BIT(LPTIM1->CR, 0x01); //Clear IRQs LL_LPTIM_ClearFl...