From 9c2b3b7c175f87bf5af5746a5ba0ecd8c4089293 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Thu, 21 Apr 2022 14:12:16 -0400 Subject: make 2022 the default year --- watch-library/hardware/main.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'watch-library') diff --git a/watch-library/hardware/main.c b/watch-library/hardware/main.c index eb372cc4..d1eee168 100755 --- a/watch-library/hardware/main.c +++ b/watch-library/hardware/main.c @@ -66,6 +66,13 @@ int main(void) { // Watch library code. Set initial parameters for the device and enable the RTC. _watch_init(); + // if date/time register is 0 (power on reset state), default year to 2022. + watch_date_time date_time = watch_rtc_get_date_time(); + if (date_time.reg == 0) { + date_time.unit.year = 2; + watch_rtc_set_date_time(date_time); + } + // User code. Give the app a chance to enable and set up peripherals. app_setup(); -- cgit v1.2.3