首页 > 代码库 > CSerialPort
CSerialPort
来自: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 lpOverlapped
parameter.
CSerialPort
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。