vc ++ mfc中串行编程的一些问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vc ++ mfc中串行编程的一些问题相关的知识,希望对你有一定的参考价值。

当我将嵌入式设备连接到我的系统时,我正在运行我的程序,该程序将写入我的嵌入式连接的端口,并将回复打印到控制台。

当我连接我的设备并运行该程序时,它没有提供任何输出。

但是当我连接我的设备并使用PUTTY首先发送一些命令然后运行我的程序时,它正在工作。

也许我开始沟通的方式有问题?

我的源代码是:

#include "stdafx.h"
#include <iostream>
//#include <windows.h>
#include <afx.h>

int main()
{
    using namespace std;
    int i=0;
//  cout << "Hello world!" << endl;



    HANDLE hSerial;

    hSerial = CreateFile("COM5",
    GENERIC_READ | GENERIC_WRITE,
    FILE_SHARE_WRITE | FILE_SHARE_READ,
    0,
    OPEN_EXISTING,
    FILE_ATTRIBUTE_NORMAL,
    0);

    if(hSerial==INVALID_HANDLE_VALUE)
    {
        if(GetLastError()==ERROR_FILE_NOT_FOUND)
        {
//          TRACE("serial port does not exist for reading
");
        //serial port does not exist. Inform user.
        }
//          TRACE("some other error,serial port does not exist for reading
");
        //some other error occurred. Inform user.
    }

    DCB dcbSerialParams = {0};

    dcbSerialParams.DCBlength=sizeof(dcbSerialParams);

    if (!GetCommState(hSerial, &dcbSerialParams)) 
    {
//                  TRACE("error getting state for reading
");
    //error getting state
    }

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

    if(!SetCommState(hSerial, &dcbSerialParams))
    {
    //TRACE("error setting state for reading
");
    //error setting serial port state
    }
    COMMTIMEOUTS timeouts={0};

    timeouts.ReadIntervalTimeout=50;
    timeouts.ReadTotalTimeoutConstant=50;
    timeouts.ReadTotalTimeoutMultiplier=10;

    timeouts.WriteTotalTimeoutConstant=50;
    timeouts.WriteTotalTimeoutMultiplier=10;

    if(!SetCommTimeouts(hSerial, &timeouts))
    {
//                  TRACE("some error occured for reading
");
        //error occureed. Inform user
    }       
    int n=100,n1=100;
    char szBuff[100];
    DWORD dwBytesRead = 0;
    char szBuff1[100];
    DWORD dwByteswrote = 0;
    memset(szBuff1,0,100);
    memcpy(szBuff1,"LIST
",5);
    if(!WriteFile(hSerial, szBuff1,5, &dwByteswrote, NULL))
    {
                    cout << "error writing" ;
    }
    cout << szBuff1 << endl;
    cout << dwByteswrote << endl;
    while(1)
    {
        if(!ReadFile(hSerial, szBuff, n1, &dwBytesRead, NULL))
        {
            cout << "error reading";
            break;
        }
        else
        {
            cout << dwBytesRead << endl;
            szBuff[dwBytesRead]='';
            if(dwBytesRead>0)
            {
                cout << (szBuff);

                break;
            }
        }
    }

    cin >> i;
}
答案

试试这个...你可能需要做异常代码(例如:如果响应大于2024)

bool SendModemATCommand(const string &strCommand, int iModemPort, string &strRetValue)
{
    bool bRetValue = false;

    strRetValue = "";
    char cBuffer[2024];

    HANDLE hCom = NULL;   
    char cComPort[64];
    sprintf_s(cComPort,"\\.\COM%d", iModemPort);


    hCom = CreateFile( cComPort,
                    GENERIC_READ | GENERIC_WRITE,
                    0,    // must be opened with exclusive-access
                    NULL, // no security attributes
                    OPEN_EXISTING, // must use OPEN_EXISTING
                    0,    // not overlapped I/O
                    NULL  // hTemplate must be NULL for comm devices
                    );

    if (hCom != INVALID_HANDLE_VALUE) 
    {
        COMMTIMEOUTS comTimeOuts;
        comTimeOuts.ReadIntervalTimeout = MAXDWORD;
        comTimeOuts.ReadTotalTimeoutMultiplier = MAXDWORD;
        comTimeOuts.ReadTotalTimeoutConstant = 0;//MAXDWORD;
        comTimeOuts.WriteTotalTimeoutMultiplier = 0;
        comTimeOuts.WriteTotalTimeoutConstant = 0;
        if(SetCommTimeouts(hCom, &comTimeOuts))
        {
            DCB dcb;
            dcb.DCBlength = sizeof(DCB);
            if(GetCommState(hCom, &dcb))
            {
                DWORD dwBytesWritten = 0;                  
                DWORD dwBytesRead = 0;
                DWORD dwBytesTotal = 0;

                if( WriteFile(hCom, strCommand.c_str(), (int)strCommand.size(), &dwBytesWritten, NULL) )
                {
                    if(dwBytesWritten == strCommand.size())
                    {
                        dwBytesRead = 0;
                        DWORD tickStart = GetTickCount();
                        bool bTimeOut = false;                      
                        while(true)
                        {
                            while(ReadFile(hCom, cBuffer + dwBytesTotal, 1, &dwBytesRead, NULL))
                            {       
                                if(dwBytesRead == 0 && dwBytesTotal != dwBytesWritten)
                                    break;
                                dwBytesTotal += dwBytesRead;                                
                            }
                            if ( dwBytesTotal == 0 )
                            {
                                // timeout
                                if ( GetTickCount() - tickStart > 10000) // 10 Seconds
                                {
                                    bTimeOut = true;
                                    break;                              
                                }
                            }
                            else
                                break;
                        }                   

                        cBuffer[dwBytesTotal] = '';
                        strRetValue = cBuffer;

                        if(bTimeOut)
                            strRetValue = "Timed out:" + strCommand;
                        else
                            bRetValue = true;
                    }
                }
            }
        }
        CloseHandle(hCom);
    }

    return bRetValue;
}
另一答案

最有可能的问题是你的初始化。

我记得之前遇到过这种类型的麻烦,Com Timeouts结构特别麻烦。

我建议你从COM5到机器上的另一个端口(如果有的话)或另一台计算机上获得一个零调制解调器电缆。然后使用终端程序打开另一个端口,看到运行程序时可以看到“List”命令。如果没有,则很可能与您初始化和打开COM端口的方式有关。

此链接可能有用。只需删除Afx的东西,特别注意初始化。 http://www.codeproject.com/KB/system/chaiyasit_t.aspx

另外一个建议是,你只发送一次List。如果设备尚未插入并准备就绪,则不会发生任何事情。也许它应该继续发送list命令,直到它获得响应。

此外,您需要“List r n”还是只需“List r”?期待的其他目的是什么?

以上是关于vc ++ mfc中串行编程的一些问题的主要内容,如果未能解决你的问题,请参考以下文章

vc,mfc,api,windows编程,win32(sdk),gui学习的顺序是怎样的,本人迷茫中!!

如何创建MFC文件,编写贪食蛇小游戏

VC++6.0MFC运行的简单流程

旧版 MFC 代码 (2005) 无法在 VC 2010 上编译

在 MFC 编程的 \$InstallDir\VC\atlmfc\src\mfc\olelock.cpp 第 62 行上调试断言失败

VC++ 非 mfc 中的父子窗口问题