|
@@ -99,6 +99,12 @@ static void timer_acts_handler(struct k_work *work)
|
|
|
_sd8563_open_write_protection(external_rtc->i2c_dev);
|
|
|
}
|
|
|
|
|
|
+ k_msleep(100);
|
|
|
+
|
|
|
+ _sd8563_read_time(external_rtc->i2c_dev, false); //读一次,避免用户在设置后再次快速进入设置界面时数据不正确
|
|
|
+
|
|
|
+ hrtimer_restart(&g_rtc_ht_read);
|
|
|
+
|
|
|
bySetHour = 0xff;
|
|
|
bySetMinute = 0xff;
|
|
|
bySetWeekday = 0xff;
|
|
@@ -106,10 +112,6 @@ static void timer_acts_handler(struct k_work *work)
|
|
|
bySetMonth = 0xff;
|
|
|
bySetDay = 0xff;
|
|
|
|
|
|
- _sd8563_read_time(external_rtc->i2c_dev, false); //读一次,避免用户在设置后再次快速进入设置界面时数据不正确
|
|
|
-
|
|
|
- hrtimer_restart(&g_rtc_ht_read);
|
|
|
-
|
|
|
return;
|
|
|
}
|
|
|
|