资 源 简 介
支持VC 6.0,VS2008开发平台
用法如下:
/*全局变量*/
CMCOM Mcom;
int I_baudrate[] = {2400,4800,9600,19200,115200,128000,256000},b_in = 0;
BYTE byte_size,stop_bit,parity;
//波特率
b_in = 4; //波特率115200
// 串口数据宽度
byte_size = 8;
// 停止位个数
stop_bit = ONESTOPBIT;
// 校验类型
parity = NOPARITY;
if(Mcom.open_com(C_SSCOM_No,I_baudrate[b_in],byte_size,stop_bit,parity) == FALSE)
{
AfxMessageBox(L"串口打开失败!");
}
else
{
WriteStatusBar(L"串口打开成功!");
}