Prechádzať zdrojové kódy

设置好时间或日期后,点击确定按钮将延时1.5s跳转画面,保证时间或日期能够更新

mohliy 2 mesiacov pred
rodič
commit
b28d9456e4

+ 14 - 0
application/aem_watch/src/application/settings/aem_set_time.c

@@ -230,6 +230,20 @@ static void click_event_cb(lv_event_t *event)
     default:
         break;
     }
+#ifndef CONFIG_SIMULATOR    
+    k_msleep(1500);  //延时1.5s跳转画面,保证时间或日期能够更新   
+    /*
+    while(1)
+    {
+        if ((bySetHour == 0xFF) && (wSetYear == 0xFF))  //时间和日期没有设置或者设置完成,则跳转
+        {
+            k_msleep(100);
+            break;
+        }
+        k_msleep(100);
+    }
+    */
+#endif    
     aem_app_goback();
 }
 

+ 1 - 1
thirdparty/lib/aem/config/aem_project.h

@@ -4,7 +4,7 @@
 #pragma warning(error : 4013)
 #endif
 #define AEM_VERSION "BL_Develop_NOR"
-#define BUILD_TIME "202501171226"
+#define BUILD_TIME "202501201132"
 #define AEM_GUI_FWK_LIB_VER "2.0.0.0"
 #define APP_DOWNLOAD_URL "https://customer.com"
 #define AEM_APP_TRANS_ANIMATION 1

+ 6 - 4
zephyr/drivers/input/sd8563_timer_acts.c

@@ -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;
 	}