?? dataport.h
字號:
// DataPort.h: interface for the CDataPort class.
//
//////////////////////////////////////////////////////////////////////
#ifndef _CLASS_CDataPort_h_
#define _CLASS_CDataPort_h_
#include "Commport.h"
class CDataPort : public CCommPort
{
public:
CDataPort(){};
~CDataPort(){};
public:
void SendDataPackage(unsigned char *str);//數據從長度域Len開始
unsigned char ReceiveDataPackage(unsigned char *Datas);//數據從長度域Len開始,返回功能碼Func
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -