繁体   English   中英

不正确的值被打印到文件。 串口通讯程序

[英]Incorrect values are being printed to file. Serial Port communication program

该代码应该向COM3发送命令,将响应发送到文件-然后从COM5读取一定数量的字符并将其写入文件。 奇怪的值正在打印。

我想我看代码太久了。 任何帮助都会很棒。

#include <Windows.h>
#include <iostream>
#include <string>
#include <fstream>

using namespace std;
int main()
{
    ofstream myfile;
    myfile.open ("example.txt", 'w');

    HANDLE hSerial = CreateFile("COM3",GENERIC_READ | GENERIC_WRITE,0,0,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,0);
    HANDLE hSerial2 = CreateFile("COM5",GENERIC_READ | GENERIC_WRITE,0,0,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,0);

    if(hSerial==INVALID_HANDLE_VALUE)
        std::cout << "Insert error message";

    DCB dcbSerialParams = {0};
    dcbSerialParams.DCBlength=sizeof(dcbSerialParams);

    if (!GetCommState(hSerial, &dcbSerialParams)) 
        std::cout << "Insert error message";

    dcbSerialParams.BaudRate=CBR_9600;
    dcbSerialParams.ByteSize=8;
    dcbSerialParams.StopBits=ONESTOPBIT;
    dcbSerialParams.Parity=NOPARITY;

    if (!SetCommState(hSerial,&dcbSerialParams))
        std::cout << "Insert error message";


    COMMTIMEOUTS timeouts={0};
    timeouts.ReadIntervalTimeout=50;
    timeouts.ReadTotalTimeoutConstant=50;
    timeouts.ReadTotalTimeoutMultiplier=10;
    timeouts.WriteTotalTimeoutConstant=50;
    timeouts.WriteTotalTimeoutMultiplier=10;
    if(!SetCommTimeouts(hSerial, &timeouts))
        std::cout << "Insert error message";


int i = 0;
while(i < 10)
{
char szBuff[50+1] = {0};
char lzBuff[400] = {0};
char wzBuff[14] = {"AT+CSQ\r"};

DWORD dZBytesRead = 0;
DWORD dwBytesRead = 0;


if(!WriteFile(hSerial, wzBuff, 7, &dZBytesRead, NULL))
    std::cout << "Write error";

if(!ReadFile(hSerial, szBuff, 50, &dwBytesRead, NULL))
    std::cout << "Read Error";

if(!ReadFile(hSerial2, lzBuff, 400, &dZBytesRead, NULL))
    std::cout << "Read Error";


std::string test2 = std::string(lzBuff).substr(300,10);
//std:: cout << szBuff;
if(dwBytesRead > 9)
{
    std::string test = std::string(szBuff).substr(8,3);
    myfile << test <<endl << endl << endl;

std::cout << test << endl;
}

if(dZBytesRead > 200)
{
    std::string test2 = std::string(lzBuff).substr(1,10);
    myfile << test2 << '\n' << '\n';

}

Sleep(500);
i++;
}

myfile.close();
return 0;
}

当我有COM端口吐出奇怪的字符时,通常是因为波特率不匹配。

您应该在hSerial2上调用SetCommState以确保它具有与hSerial相同的波特率。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM