User Activity

Hi ST Community.A colleague and I were having issues on an STM32L4, in that the CSS detects an LSE failure and swaps to the LSI.We looked at Errata ES00335 - Rev 15 and it confirms what we see that the LSI becomes unstable. We're looking for a workar...
Hello, I'm running into a bit of trouble updating firmware using DFU. This would not be such a big deal, apart from the fact that sometimes an upgrade needs to be made without the ST-Link tool.First of all, entering DFU mode and re-flashing the firmw...
Hi all,As stated above, I can't seem to wake up the controller from STOP2 mode using WFE with the ALARM A. Here's my alarm and EXTI settings:if(EXTI->PR1 & EXTI_PR1_PIF18) { EXTI->PR1 |= EXTI_PR1_PIF18; ///< Clear pending interrupt if necessary } EX...
Hi all,I have a function that prints out on a prompt the current RTC Date and Time values from the RTC module... basicaly when it's called it goes like this:RTC_TimeTypeDef rmi_time = {0}; RTC_DateTypeDef rmi_date = {0};   HAL_RTC_GetTime(&hrtc, &rmi...
Hello,I'm trying to update a micro over DFU (USB) mode since we don't always have access to the STlink programmer.I managed to start the unit in System Memory mode by reading a backup register at startup and jumping to system firmware if it's a certa...