⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 atcmd.h

📁 tc35i(GSM模块)的控制程序VC源码
💻 H
字号:
// ATCmd.h: interface for the CATCmd class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_ATCMD_H__7F2C9EA7_8AE1_46C8_87D6_91374E489EEE__INCLUDED_)
#define AFX_ATCMD_H__7F2C9EA7_8AE1_46C8_87D6_91374E489EEE__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Sms.h"
class CATCmd  
{
public:
	CATCmd();
	virtual ~CATCmd();
public:
	static bool AT_Test();
	static bool AT_Set_PDU();
	static bool AT_Set_Snfs();
    static bool AT_Set_Saic();
	
	static bool AT_Call(PTBYTE desTelNo,UINT len);
	static bool AT_Accept();//接听
	static bool AT_Hangup();//挂机
	static bool AT_SendMsgStep1(PTBYTE msgCenterNo ,UINT msgCenterNo_len,
							   PTBYTE desTelNo ,UINT desTel_len,
							   PTBYTE msg, UINT msg_len);
	static bool AT_SendMsgStep2();
	static bool AT_ReadMsg(UINT index);//读短消息
	static bool AT_DelMsg(UINT index);//删除sim卡上的短消息
	static bool AT_MsgDecode(const char* pSrc, SM_PARAM* pDst);//解码短消息
	static bool AT_Read_Signal();

	static bool AT_Set_ShowTelClue();
	static bool AT_Set_ShowMsgClue();
    static bool AT_Read_MsgCenter();
	static bool AT_Set_MsgCenter(PTBYTE msgCenterNo ,UINT msgCenterNo_len);
public:
	static TBYTE m_pdu[];
};

#endif // !defined(AFX_ATCMD_H__7F2C9EA7_8AE1_46C8_87D6_91374E489EEE__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -