串口助手.rar

时间:2022-09-08 11:24:39
【文件属性】:

文件名称:串口助手.rar

文件大小:21.9MB

文件格式:RAR

更新时间:2022-09-08 11:24:39

vs2010 MFC

用于串口助手开发的初步了解与学习。 //设置超时 TimeOuts.ReadIntervalTimeout=MAXDWORD; //读间隔超时 TimeOuts.ReadTotalTimeoutMultiplier=0; //读时间系数 TimeOuts.ReadTotalTimeoutConstant=0; //读时间常量 TimeOuts.WriteTotalTimeoutMultiplier=0; //写时间系数 SetCommTimeouts(m_hCom,&TimeOuts;); //设置串口参数 DCB dcb; //DCB结构,定义了串口通信设备的控制设置 if(!GetCommState(m_hCom,&dcb;)) //读取新创建的m_hCom串口句柄的DCB设备控制块结构体,当只需要设置一部分DCB参数时,可以通过此函数读取现有参数,只改变部分参数即可 return FALSE; //如果读取不成功直接结束 //设置基本参数 long baudrate[]={300,600,1200,2400,4800,9600,19200,38400,43000,56000,57600,115200}; int baudindex=m_ComboBaud.GetCurSel(); m_ComboBaud.GetLBText(baudindex,m_BaudStr); dcb.BaudRate=baudrate[baudindex]; //读取并设置波特率参数 int databit[]={8,7,6}; int dataindex=m_ComboData.GetCurSel(); m_ComboData.GetLBText(dataindex,m_DataStr); dcb.ByteSize=databit[dataindex]; //读取并设置数据位参数 int jiaoyanindex=m_ComboJiaoyan.GetCurSel(); m_ComboJiaoyan.GetLBText(jiaoyanindex,m_JiaoyanStr); switch(jiaoyanindex) { case 0: dcb.Parity=NOPARITY; //读取并设置校验位参数 break; case 1: dcb.Parity=ODDPARITY; break; case 2: dcb.Parity=EVENPARITY; break; default:; }


【文件预览】:
SerialComSoftware_自写详细注释 - 副本
----Debug()
--------SerialComSoftware.ilk(1.13MB)
--------SerialComSoftware.pdb(4.88MB)
--------SerialComSoftware.exe(173KB)
----ipch()
--------serialcomsoftware-e0cb0a66()
----SerialComSoftware.sdf(56.02MB)
----SerialComSoftware.sln(918B)
----SerialComSoftware.suo(14KB)
----SerialComSoftware()
--------SerialComSoftware.vcxproj(6KB)
--------SerialComSoftwareDlg.cpp(28KB)
--------resource.h(3KB)
--------Debug()
--------RCb13404(12KB)
--------SerialComSoftware.vcxproj.user(143B)
--------SerialComSoftware.h(508B)
--------stdafx.h(2KB)
--------ReadMe.txt(3KB)
--------SerialComSoftware.rc(13KB)
--------res()
--------stdafx.cpp(150B)
--------SerialComSoftware.vcxproj.filters(2KB)
--------RCa13404(12KB)
--------SerialComSoftwareDlg.h(3KB)
--------RCa16120(12KB)
--------targetver.h(234B)
--------SerialComSoftware.cpp(2KB)

网友评论