• 大小: 26KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-10
  • 语言: C/C++
  • 标签: com  串口通信  

资源简介

用vc 2003 使用com组件方式写的window下通用的串口通信接口

资源截图

代码片段和文件信息

/*@doc
@module RS232SERIAL.cpp: Implementation of the communication channel CRS232Serial.|


******************************************************************************/

// MN: Search for MN:

// MN: StartReadThread and StartWriteThread used _beginThreadEx instead of
//     CreateThread as a consquence this module did not link in non-debug
//     mode.
//     I changed the function call back to CreateThread but I could not
//     establish why Jeremy changed the function call from originall CreateThread
//     to _beginThreadEx.

#include “stdafx.h“


//#include “..\\LogFileCode\\Logger.h“

LPTSTR FindSubStr(LPTSTR source LPTSTR subStr)
{
int srcLen = _tcslen(source);
int subLen = _tcslen(source);

if (subLen > srcLen)
return NULL;

int i k;
for (

评论

共有 条评论