You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 21, 2020. It is now read-only.
In RTCInt.cpp day setting function and month setting function doesn't support for day '1' and month '1'.
The condition needs to be changed from if((day > 1) && (day <=31)) to if((day >= 1) && (day <=31))
and if((month > 1) && (month <=12)) to if((month >= 1) && (month <=12))