From 0942f592f3c033983c4ccaba6d632bbf80611abb Mon Sep 17 00:00:00 2001
From: chen <15335560115@163.com>
Date: 星期三, 21 五月 2025 14:29:55 +0800
Subject: [PATCH] 上传格式正确,但电量未采集版本,未加入蓝牙与mk和mk和lora和网关同步修改配置逻辑,测距稳定能用基础版本

---
 keil/include/components/internet/inc/ATConfig.h |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/keil/include/components/internet/inc/ATConfig.h b/keil/include/components/internet/inc/ATConfig.h
new file mode 100644
index 0000000..e2d5a15
--- /dev/null
+++ b/keil/include/components/internet/inc/ATConfig.h
@@ -0,0 +1,38 @@
+/*******************************************************************************
+ * File Name         : ATConfig.h
+ * Description       :
+ * Created on        : 2019年12月28日
+ * Author            : www.hido-studio.com
+ *******************************************************************************/
+
+#ifndef _AT_CONFIG_H_
+#define _AT_CONFIG_H_
+/*******************************************************************************
+ *                              Include Files                                  *
+ *******************************************************************************/
+#include "HIDO_TypeDef.h"
+
+/*******************************************************************************
+ *                                  Macro                                      *
+ *******************************************************************************/
+#define AT_CMD_RESULT_OK                                 0x0001
+#define AT_CMD_RESULT_ERROR                              0x0002
+#define AT_CMD_RESULT_TIMEOUT                            0x0004
+
+#define AT_GENERAL_TIMEOUT_TIME                            5000
+
+/*******************************************************************************
+ *                             Type Definition                                 *
+ *******************************************************************************/
+typedef struct
+{
+    HIDO_CHAR *m_pcATCmd;
+    HIDO_UINT32 m_u32TimeOut;
+    HIDO_UINT32 m_u32Result;
+}ST_ATCmd;
+
+/*******************************************************************************
+ *                             Global Function                                 *
+ *******************************************************************************/
+
+#endif /* _AT_CONFIG_H_ */

--
Gitblit v1.9.3