From 67ca69985af9109a0603a1cde71f21b940c059ff Mon Sep 17 00:00:00 2001 From: chen <15335560115@163.com> Date: 星期四, 15 五月 2025 09:12:53 +0800 Subject: [PATCH] 完全将免布线标签代码移植过来版本 --- 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