User Activity

There are two typedefs in the 'stm32l1xx_hal_gpio.h' file: 'GPIO_InitTypeDef' and 'GPIO_PinState'. The first has a corresponding entry in the low-level drivers (stm32l1xx_ll_gpio.h), but the other one is missing.It looks like this in the HAL file:/**...
The STM32L100/151/152/162 Reference Manual says that there is a BRR (bit reset register) for Category 3 devices, when, in fact, there isn't. This is a known problem, please see:https://community.st.com/s/question/0D50X00009XkWybSAF/brr-register-does-...
In stm32l1xx_ll_rtc.h, generated by STM32Cube MCU Package for STM32L1 Series, v1.8.1, line 2110:__STATIC_INLINE void LL_RTC_ALMB_SetDay(RTC_TypeDef *RTCx, uint32_t Day) { MODIFY_REG(RTC->ALRMBR, (RTC_ALRMBR_DT | RTC_ALRMBR_DU), (((Day ...
Posted on May 24, 2016 at 03:30Hello,It looks like there is a discrepancy between the StdPeriphLib example programs and the Reference Manual regarding the ADC calibration.  Which is the correct method?In the RM0008 Reference Manual, Rev 14, Section ...