gpt4 book ai didi

c++在使用串口发送之前将十六进制转换为ASCII

转载 作者:行者123 更新时间:2023-11-28 07:25:07 24 4
gpt4 key购买 nike

我想用 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);

}

但是没用

最佳答案

这可以通过 std::ostringstream 来完成将单独的值放入字符串中,然后 std::stoi将字符串解析为整数:

std::ostringstream os("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");

std::vector<uint8_t> values;

std::string value_string;
while (os >> value_string)
values.push_back(static_cast<uint8_t>(std::stoi(value_string, nullptr, 16)));

WriteFile(hCom, values.data(), sizeof(uint8_t) * values.size(), &nBytesWrite, NULL);

关于c++在使用串口发送之前将十六进制转换为ASCII,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18890301/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com