博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PJ Naughter CSerialPort
阅读量:5773 次
发布时间:2019-06-18

本文共 898 字,大约阅读时间需要 2 分钟。

来自:http://www.codeproject.com/Articles/382/CSerialPort-v-Serial-Port-Wrapper

Features

  • Simple and clean C++ interface.
  • Uses C++ exceptions in preference to the normal Win32 return value mechanism. This ensures that code which uses CSerialPort is more robust.
  • Unicode enabled, supports linking to MFC statically and all code compiles cleanly at warning level 4.
  • Supports overlapped, blocking and callback usage models of the serial port. (Callback is only supported on NT)

Remarks

This function is called as the completion routine for any asynchronous calls to WriteEx or ReadEx. In your derived class from CSerialPort, you can override this function to perform your own specific code in reaction to an asynchronous call completion. Don't forget to call the parent version, namely this functionCSerialPort::OnCompletion as it handles the cleanup of the memory allocated for the lpOverlappedparameter.

转载地址:http://ygxux.baihongyu.com/

你可能感兴趣的文章
使用PullToRefresh实现下拉刷新和上拉加载
查看>>
mysql
查看>>
2012年电信业八大发展趋势
查看>>
Web日志安全分析工具 v2.0发布
查看>>
JS重载
查看>>
python2和python3同安装在Windows上,切换问题
查看>>
php加速工具xcache的安装与使用(基于LNMP环境)
查看>>
android超链接
查看>>
redhat tomcat
查看>>
统计数据库大小
查看>>
IO流的学习--文件夹下文件的复制
查看>>
第十六章:脚本化HTTP
查看>>
EXCEL表中如何让数值变成万元或亿元
查看>>
nginx在响应request header时候带下划线的需要开启的选项
查看>>
Linux下DHCP服务器配置
查看>>
AndroidStudio中导入SlidingMenu报错解决方案
查看>>
我的IDEA配置
查看>>
myeclipse显示行号
查看>>
编写高性能的java程序
查看>>
Spring 的配置详解
查看>>