2011-04-25 07:58 AM
RTC writing counter register while running
2011-05-17 05:32 AM
You are probably missing
/* Enable PWR and BKP clocks */ RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR | RCC_APB1Periph_BKP, ENABLE); /* Allow access to BKP Domain */ PWR_BackupAccessCmd(ENABLE); or you haven't actually disabled to the RTC interrupt. The examples for the RTC are not particularly complete/comprehensive.2011-05-17 05:32 AM
Thanks for this,
now setting RTC clock registers are working.