-
传真通讯是现代图像通讯的重要组成部分,也是传递静止图像的最重要手段。介绍了数字传真原理与应用。...
传真通讯是现代图像通讯的重要组成部分,也是传递静止图像的最重要手段。介绍了数字传真原理与应用。-Fax communications in modern image communication is an important component of the transmission of still images is the most important means. Introduced the principle and application of digital fax.
- 2023-02-24 16:35:04下载
- 积分:1
-
reading MSDN found as long as the magic MultiByteToWideChar and LCMapString two...
在阅读MSDN中发现只要妙用MultiByteToWideChar和LCMapString两函数,就可以简简单单地实现不同内码的转换。为了让程序员使用更方便,笔者编写了一个CChineseConvertor类,包装了所有中文内码的转换功能。读者可以直接在MFC中加入此类,用起来也非常轻松。详细细节请察看ChineseConvertor.h和ChineseConvertor.cpp源代码。-reading MSDN found as long as the magic MultiByteToWideChar and LCMapString two functions, it can simply to achieve different internal code conversion. To allow programmers to use more convenient, the authors prepared a CChineseConvertor category, packaging of all Chinese within yards of the conversion function. Readers can direct the inclusion of such MFC, using it is also extremely easy. For further details, please see ChineseConvertor.h and ChineseConvertor.cpp source code.
- 2023-01-12 21:45:05下载
- 积分:1
-
China Mobile ADC general technical requirements, industrial applications necessa...
中国移动ADC总体技术要求,行业应用必备文档,中国移动内部资料,网上少见-China Mobile ADC general technical requirements, industrial applications necessary documents, China Mobile" s internal data, on-line rare
- 2022-06-30 09:28:03下载
- 积分:1
-
MFC写的串口测试工具源码
CSerialPort:: CSerialPort(){单独监禁= FALSE;m_hComm= NULL;//初始化重叠结构成员为零m_ov.Offset= 0;m_ov.OffsetHigh= 0;//创建活动m_ov.hEvent= NULL;m_hWriteEvent= NULL;m_hShutdownEvent= NULL;m_hErrorEvent= NULL;m_hSendCompleteEvent= NULL;m_bThreadAlive= FALSE;m_bSendNotify= FALSE;m_SendList.clear();//初始化关键部分:: InitializeCriticalSection(m_csCommunicationSync);:: InitializeCriticalSection(m_csSendList);}////删除动态内存//CSerialPort::〜CSerialPort(){ReleasePort();:: DeleteCriticalSection(m_csCommunicationSync);:: DeleteCriticalSection(m_csSendList);}无效CSerialPort:: ReleasePort(){而(m_bThreadAlive){而::休眠(1)(m_SendList.empty()!); //2012-09-27zhaoz修复停止仪器采集后数据报文发送不出去问题SetEvent的(m_hShutdownEvent);睡眠(1);}
- 2022-02-25 01:02:02下载
- 积分:1
-
用Visual C++编写的MFC程序,可以实现PC到PC的COM…
用visual c++编写的MFC程序,可以实现PC对PC的通信及PC对单片机的通信。-Visual c++ using the MFC process to prepare, you can achieve PC to PC and PC communication on single-chip communications.
- 2022-02-28 18:08:56下载
- 积分:1
-
delphi开发USB程序的组件及示例代码
已经通过了以下平台的测试:
Delphi 4
Delphi 5
Kylix 1...
delphi开发USB程序的组件及示例代码
已经通过了以下平台的测试:
Delphi 4
Delphi 5
Kylix 1-delphi USB development procedures and sample code components has adopted the following platform test : Delphi Delphi 5 4 1 Kylix
- 2022-01-25 14:07:18下载
- 积分:1
-
qt 商品管理系统
qt实现的 商品管理系统 可用于管理公司物品进出及价格~附部分实现文件源码:#include "client.h"#include "ui_client.h"#include #include Client::Client(QWidget *parent) : QDialog(parent), ui( 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2023-04-26 10:55:03下载
- 积分:1
-
文件上传下载的asp原码,许多程序是别人编写的,版权归原作者,但我作了许多改进,使得程序很适用了。...
文件上传下载的asp原码,许多程序是别人编写的,版权归原作者,但我作了许多改进,使得程序很适用了。-file upload download asp original code, and many others procedures prepared by Lastings Author, but I made a lot of improvements, making procedures are applied.
- 2023-02-21 23:30:04下载
- 积分:1
-
1、将串口通讯协议存储为一个通讯文件,可是随时将存储通讯协议文件调入计算机运行与下位机通讯 可以实现通讯对话,供下位机工程师参考使用,其主要的通讯协议本程序把它...
1、将串口通讯协议存储为一个通讯文件,可是随时将存储通讯协议文件调入计算机运行与下位机通讯 可以实现通讯对话,供下位机工程师参考使用,其主要的通讯协议本程序把它们分成四种情况。 以下说明: 1)下位机直接发送数据,上位机只接收不回应数据。 2)下位机直接发送数据,上位机接收并回应数据。 3)上位机直接发送数据,下位机只接收不回应数据。 4)上位机直接发送数据,下位机接收并回应数据。 下位机工程师完全可以利用这个功能单独的并且很方便的调试与上位机通讯程序,更改双方的通讯协议, 不再需要上位机工程师的配合。windwos标准操作,使用方便。 2、可以监听活动串口的数据,将监听到的数据显示到数据显示区里面,可以保存。也可以将原先保存的文件数据读进来,以供分析。数据可以按照Hex和Ascii显示出来。发送所输入的数据,能够定时发送数据,发送文件,提供Hex和Ascii输入方式。 3、可以通过该程序,利用串口将文件发送到另一个计算机上。另一个计算机通过接收文件接收所发出的文件。-1 1 2 3 4 windwos 2HexAsc
- 2022-03-11 17:25:48下载
- 积分:1
-
LDPC pexit图分析
原模图分析译码门限值时,传统的EXIT不能用,所以采用pexit图,是原模图分析的最重要的工具。文中提出了一种新的外部信息转移分析方法,主要针对基于原模图和多边形的LDPC码 ,进一步介绍了边连接的限制,对于这一类的许多类型的码字,传统的EXIT图分析方法不能应用,文中提出的PEXIT图考虑了边的连接,允许对基于原模图的LDPC码的译码收敛估计,允许设计高结构化的接近容量的LDPC码
- 2022-08-03 12:48:02下载
- 积分:1