我想与 C++ 中的电子负载通信。我使用win32.h。要将电子负载远程控制,我需要发送:
“AA 00 20 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 CB”
但在发送之前,我需要将其转换为 ASCII 码。
我的代码是:
HANDLE hCom;
DWORD dwError;
BOOL fSuccess;
DWORD dwEvtMask;
int i;
int NbOctet;
char *Message;
unsigned long nBytesWrite;
LPCWSTR Port = L"COM14";
Message = new char[200];
std::string Test;
/*-----------------------------------------------*/
/* Ouverture du port de communiucation */
/*-----------------------------------------------*/
hCom = CreateFile(Port,
GENERIC_READ | GENERIC_WRITE,
0,
NULL,
OPEN_EXISTING,
0,
NULL
);
Message = "AA 00 20 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 CB";
NbOctet = strlen(Message);
WriteFile(hCom,Message,NbOctet,&nBytesWrite,NULL);
CloseHandle(hCom);
delete[] Message;
我的问题是:如何在发送之前将消息转换为 ASCII 字符?
我在 python 中有一个我想要的例子:
# Construct a set to remote command
cmd = chr(0xaa) + chr(0x00) + chr(0x20) # First three bytes
cmd += chr(0x01) + chr(0x00)*(length_packet - 1 - 4)
cmd += chr(CalculateChecksum(cmd))
sp.write(cmd)
我的新代码是:
void main(int argc, TCHAR *argv[])
{
HANDLE hCom;
DWORD dwError;
BOOL fSuccess;
DWORD dwEvtMask;
int i;
int NbOctet;
unsigned long nBytesWrite;
LPCWSTR Port = L"\\\\.\\COM14";
/*-----------------------------------------------*/
/* Ouverture du port de communiucation */
/*-----------------------------------------------*/
hCom = CreateFile(Port,
GENERIC_READ | GENERIC_WRITE,
0,
NULL,
OPEN_EXISTING,
0,
NULL
);
char Message[] = {0xAA,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xCB};
NbOctet = strlen(Message);
qDebug() << Message;
WriteFile(hCom,Message,NbOctet,&nBytesWrite,NULL);
CloseHandle(hCom);
}
但它不起作用