Question
seems access to the backup domain is not granted when calling RTC_EnterInitMode() and RTC is clocked by LSI, at least on STM32WB55
Recently i experimented with the RTC modules and came accross an issue where HAL_RTC_Init() fails because RTC_EnterInitMode() fail with HAL_TIMEOUT
After debugging, it seems that HAL_PWR_EnableBkUpAccess() need to be called before HAL_RTC_Init()
It appear that HAL_PWR_EnableBkUpAccess() is called if the LSE is used, but not if LSI is used. See line 775 of stm32wbxx_hal_rcc_ex.c.
Question: when is HAL_PWR_EnableBkUpAccess() supposed to be called ?
