User Activity

As of STM32Cube_FW_L4_V1.12.0, LL_RTC_ALMB_SetDay() reads:__STATIC_INLINE void LL_RTC_ALMB_SetDay(RTC_TypeDef *RTCx, uint32_t Day) { MODIFY_REG(RTC->ALRMBR, (RTC_ALRMBR_DT | RTC_ALRMBR_DU), (((Day & 0xF0U) << (RTC_ALRMBR_DT_Pos - 4U)) ...
Posted on June 12, 2017 at 18:30The data sheet for the STM32L476xx (DocID025976 Rev 4 states on page 124, footnote 2 of table 40) states:� In order to save the full GPIOx current consumption, the GPIOx clock should be disabled in the RCC when all po...
Posted on March 21, 2017 at 23:41 I require a periodic wakeup from shutdown-mode. For that I found two recipes: AN4759 (table 7) and RM0351 (section 3.7). Essentially they provide the same info. Unfortunately it did not work until I tripped over ...
Posted on November 26, 2016 at 15:52 When debugging an application I wondered about a strange value in TIM8_DMAR that I had not written there intentionally. In the end it all boiled down to an invocation of LL_TIM_SetCounterMode (TIM8, LL_...
Posted on November 04, 2016 at 13:42 In STM32Cube MX 4.17 I have set up an empty STM32L476 Nucleo project with and created code for the Low-Layer API. The parameters were: LL_PWR_REGU_VOLTAGE_SCALE2LL_RCC_MSIRANGE_8 The function System...