From 753f1e274931177b6daeb391cc4307439aaa6553 Mon Sep 17 00:00:00 2001 From: zhangbo <zhangbo@qq.com> Date: 星期五, 25 七月 2025 11:27:39 +0800 Subject: [PATCH] 修改电流检测逻辑,现在是1分钟检测一次,然后检测到低电量后会检测10次才会关机,V2.14 --- keil/include/components/internet/src/Internet.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/keil/include/components/internet/src/Internet.c b/keil/include/components/internet/src/Internet.c index 0f8b11b..09adf4b 100644 --- a/keil/include/components/internet/src/Internet.c +++ b/keil/include/components/internet/src/Internet.c @@ -38,16 +38,16 @@ /******************************************************************************* * Function Name : Internet_Poll - * Description : - * Input : - * Output : - * Return : + * Description : + * Input : + * Output : + * Return : * Author : 杜键 * Modified Date: : 2018年5月26日 *******************************************************************************/ HIDO_INT32 Internet_Poll(void) { - HIDO_FSMEventExecute(HIDO_FSM(AIR780E), AIR780E_EVENT_POLL, HIDO_NULL); + HIDO_FSMEventExecute(HIDO_FSM(AIR780E), AIR780E_EVENT_POLL, HIDO_NULL); return HIDO_OK; } @@ -118,7 +118,7 @@ { return HIDO_ERR; } - + if (TONE_Init() != HIDO_OK) { return HIDO_ERR; -- Gitblit v1.9.3