Posted on November 07, 2016 at 08:54
I'm using the RTC to Wakeup my STM32L475 µC from Standby Mode. That is working fine.
And i use the The HAL Library 1.5.2 for STM32L4
The main problem is i have to read the Time and Date after Wake...
Posted on February 18, 2017 at 07:51I have a similar problem with a STM32L475RE. I have made a bootloader with the cube mx. I can program the flash. That's working fine.But it is not possible to use the 'Leave DFU mode' button in the DfuSeDemo Softw...
Posted on November 08, 2016 at 08:40
Thanks Hannibal for your reply.
After Wakeup i check the Wakeup Flag from the RTC and dissable the Wakeup Timer:
if((READ_REG(RTC->ISR) & 0x00000400) == 0x00000400)
{
HAL_PWR_EnableBkUpAccess()...