CubeIDE : 1.7.0CubeMX : 6.3BSP : 1.12.1chip : STM32WB55I'm using the internal RTC of the STM32WB55. When the MCU is running the RTC works normally : the calendar can be set and the time is running correctly. When i shut the MCU power down (but still ...
Hello,I have generated a default project with cubeIDE for a nucleo L433RC. I have only enabled LPUART1 with default parameters. I just change the baud rate to 115200.I add in the main : /* Infinite loop */
/* USER CODE BEGIN WHILE */
char out[6...
I just did the same thing that HAL_RTC_MSpInit() does :__HAL_RCC_RTC_ENABLE();
__HAL_RCC_RTCAPB_CLK_ENABLE();
/* RTC interrupt Init */
HAL_NVIC_SetPriority(RTC_WKUP_IRQn, 0, 0);
HAL_NVIC_EnableIRQ(RTC_WKUP_IRQn);
HAL_NVIC_SetPriority(RTC_Alarm_IRQn,...