User Activity

Hi,I use RTC on a STM32L073. Every 12hours, I receive a date and time to set to the RTC. (Sometime, like 1% of the time) After writen the new RTC value, the RTC doesn't overflow after 23h59min59sec and keep counting without incrementing day. I can ha...
I'm working on a STM32L072, and I want to implement an update over the air. I saw there is an errata about the dual bank boot, and ST has made a workaround on it, and it uses the EEPROM.Code from the errata sheet:void SystemInit(void) { /* ...
I want to read the Vdd (link to VDDA) of my board with the ADC in a STM32L072. I try read it through a divider bridge or through VrefInt, and both give me a value far below the voltmeter value.here is my config: hadc.Instance = ADC1; hadc.Init.Ov...
I'm working on a STM32L072, and I tried to configure the PVD to rising an IT when the supply voltage is below 2.7V.It appears that the IT is always rise even the voltage is always above 3V. __HAL_RCC_PWR_CLK_ENABLE(); __HAL_PWR_VOLTAGESCALING_...