Thanks Jamesbone,
I think their is no room to make changes in hardware, only I have to manage it through a software. Today I observe that 3 sec error occur when Date changes, so I try reset or shift the time 3 second,
if(RTC_HOUR >= 23)
{
if(RTC_MIN >=59)
{
if(RTC_SEC == 59)
{
RTC_SEC = 56;
}
}
}
But I got stuck here, executing same statement again and again. can you suggest a smart way to calibrate the RTC clock time.