RNG does not work after waking up from the stop mode
Hello,
My MCU is STM32L053R8
I use freeRTOS project generated by CubeMX.
The problem is happening only when I enable tickless sleep. I get only one correct reading, which is probably generated right after MX_RNG_Init. Then after the sleep, I always get `LL_RNG_IsActiveFlag_CECS(RNG) == 1`
I call `LL_RNG_Enable(RNG)` and `LL_RNG_Disable(RNG)` before and after `LL_RNG_ReadRandData32()`
It looks like HSI does not start after the sleep. In the documentation I found that it is indeed deactivated if there is no periphery connected which can run in stop mode. But I did not find, how it should be started properly.
