2013-12-26 09:07 PM
Guys,
Does anyone know on how to initialize RTC on STM32 and display the content of the register to LCD ? Any links or reference will be appreciated, Thank you #think!2014-01-07 10:49 PM
I got it guys,
/* Load the Counter value */ Tmp = RTC_GetCounter(); /* Compute hours */ THH = ( Tmp / 3600 ) % 24; /* Compute minutes */ TMM = ( Tmp / 60 ) % 60; /* Compute seconds */ TSS = Tmp % 60;