For F73X, there is following code that avoid resetting date/time:if(LL_RTC_BAK_GetRegister(RTC, LL_RTC_BKP_DR0) != 0x32F2){.. LL_RTC_BAK_SetRegister(RTC,LL_RTC_BKP_DR0,0x32F2);}Shouldn't H7 behave similar to F7, regarding RTC initialization?
Is this fixed also for LL libraries? We do not use HAL with our projects.We ecounted this problem while trying to use timer capture to measure an external frequency, and found an 6% error, then we thought to calibrate HSI dynamically, by measuring an...
I have the same problem on H73x, using CubeMX v6.3.0, and MCU Package 1.9.0.Cube sets HSI Calibration value to 32 by default, allowing maximum value to be 63, when it should be 64 with maximum value 127. This cause decalibrated HSI clocks which affec...
LL_ADC_SetResolution is not working either, since LL_ADC_RESOLUTION_12B is 0x08 and with (((Resolution & 0x10UL) | 0x08UL | (Resolution & 0x04UL)) & 0x00000018UL) is not what ADC3 expects to see, 00, the resolution bits 4-5.Only manual setup works:MO...