Solved
CubeMX 6.1.0 RTC alarm init bug
Hi,
I noticed that if I enable an alarm for the RTC using CubeMX 6.1.0 with date/weekday mask enabled, it results in this line being generated:
RTC_AlarmStruct.AlarmMask = RTC_ALARMMASK_DATEWEEKDAYHowever, that flag is undefined. In my case, it should be:
RTC_AlarmStruct.AlarmMask = LL_RTC_ALMA_MASK_DATEWEEKDAY(This is with L4_V1.16.0 and LL drivers, targeting an STM32L475, if that matters.)
