代码搜索:Serialport

找到约 4,040 项符合「Serialport」的源代码

代码结果 4,040
www.eeworm.com/read/286341/8770458

h serialport.h

/* ** 文件名称: CSerialPort.h ** ** 描述: 这个类能读,写和监视一个端口 ** 当端口发生事件时他能给所有者发送消息 ** 这个类创建一个线程来读和写,因此,主程序不会阻塞 ** ** 作者: 李洋 */ #ifndef __SERIALPORT_H__ #define __SERIALPORT_H__
www.eeworm.com/read/286063/8792064

cpp serialport.cpp

#include "stdafx.h" #include "SerialPort.h" #include // // Constructor // CSerialPort::CSerialPort() { m_hComm = NULL; // initialize overlapped structure members to zero
www.eeworm.com/read/286063/8792074

h serialport.h

#ifndef __SERIALPORT_H__ #define __SERIALPORT_H__ #define WM_COMM_BREAK_DETECTED WM_USER+1 // A break was detected on input. #define WM_COMM_CTS_DETECTED WM_USER+2 // The CTS (clear-to-send)
www.eeworm.com/read/285678/8823702

cpp serialport.cpp

/* ** FILENAME CSerialPort.cpp ** ** PURPOSE This class can read, write and watch one serial port. ** It sends messages to its owner when something happends on the port ** The clas
www.eeworm.com/read/285678/8823708

h serialport.h

/* ** FILENAME CSerialPort.h ** ** PURPOSE This class can read, write and watch one serial port. ** It sends messages to its owner when something happends on the port ** The class
www.eeworm.com/read/285468/8839148

cpp serialport.cpp

www.eeworm.com/read/285468/8839157

h serialport.h

www.eeworm.com/read/384832/8839669

h serialport.h

//CSerialPortEx类是在Remon Spekreijse设计的CSerialPort类基础上设计的,并增加 //了对二进制数据传输和块读写方式的支持和其他功能函数。关于CSerialPort类的声明如下: /* ** FILENAME SerialPort.h ** ** PURPOSE This class can read, write and watc
www.eeworm.com/read/384832/8839685

cpp serialport.cpp

//CSerialPortEx类是在Remon Spekreijse设计的CSerialPort类基础上设计的,并增加 //了对二进制数据传输和块读写方式的支持和其他功能函数。关于CSerialPort类的声明如下: /* ** FILENAME CSerialPortEx.cpp ** ** PURPOSE This class can read, write and
www.eeworm.com/read/285011/8876232

cpp serialport.cpp

/* Module : SERIALPORT.CPP Purpose: Implementation for an MFC wrapper class for serial ports Created: PJN / 31-05-1999 History: PJN / 03-06-1999 1. Fixed problem with code using CancelIo which doe