User Activity

Currently there is only:__STATIC_INLINE void LL_ADC_ConfigOverSamplingRatioShift(ADC_TypeDef *ADCx, uint32_t Ratio, uint32_t Shift){  MODIFY_REG(ADCx->CFGR2, (ADC_CFGR2_OVSS | ADC_CFGR2_OVSR), (Shift | (((Ratio - 1UL) << ADC_CFGR2_OVSR_Pos))));}which...
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?
Kudos from