User Activity

The HAL file, stm32l4xx_ll_rtc.h has a bug in LL_RTC_ALMB_SetDay(). It should be using RTCx->ALRMBR instead of RTC->ALRMBR that is in the code.
According to ARM Cortex-A Series Programmer’s Guide for ARMv8-A:15.1.2. Standby...This mode is entered using either the WFI (Wait For Interrupt) or WFE (Wait For Event) instructions. ARM recommends the use of a Data Synchronization Barrier (DSB) ins...
The code is identical to the Disable version. The enable swapping is currently this:void HAL_SYSCFG_EnableMemorySwappingBank(void){ *(__IO uint32_t *)FB_MODE_BB = 0x00000000UL;} and instead of = 0, it should be the equivalent of 0x100.Also, the lower...
Kudos from