登录
首页 » Visual C++ » VCPP

VCPP

于 2020-11-08 发布 文件大小:3921KB
0 340
下载积分: 1 下载次数: 50

代码说明:

  VC++串口上位机程序编写,很详细,初学者编写上位机适用(VC++ serial PC programming, in great detail, the preparation of PC suitable for beginners)

文件列表:

test.exe,24576,2010-04-13
VC%2B%2B串口上位机
..............\test
..............\....\commondialog.cpp,11232,2010-04-13
..............\....\commondialog.h,3239,2010-04-13
..............\....\Debug
..............\....\.....\commondialog.obj,67530,2010-04-13
..............\....\.....\mscomm.obj,47393,2010-04-13
..............\....\.....\StdAfx.obj,105478,2010-04-13
..............\....\.....\test.exe,122966,2014-08-03
..............\....\.....\test.ilk,253864,2014-08-03
..............\....\.....\test.obj,14476,2010-04-13
..............\....\.....\test.pch,5493172,2010-04-13
..............\....\.....\test.pdb,336896,2014-08-03
..............\....\.....\test.res,2532,2010-04-13
..............\....\.....\testDlg.obj,33612,2010-04-13
..............\....\.....\vc60.idb,197632,2014-08-03
..............\....\.....\vc60.pdb,364544,2010-04-13
..............\....\mscomm.cpp,8569,2010-04-13
..............\....\mscomm.h,3221,2010-04-13
..............\....\ReadMe.txt,3543,2010-04-13
..............\....\Release
..............\....\.......\commondialog.obj,35379,2010-04-13
..............\....\.......\mscomm.obj,25793,2010-04-13
..............\....\.......\StdAfx.obj,750,2010-04-13
..............\....\.......\test.exe,24576,2010-04-13
..............\....\.......\test.obj,9749,2010-04-13
..............\....\.......\test.pch,5693856,2010-04-13
..............\....\.......\test.res,2532,2010-04-13
..............\....\.......\testDlg.obj,23235,2010-04-13
..............\....\.......\vc60.idb,50176,2010-04-13
..............\....\res

..............\....\...\test.rc2,396,2010-04-13
..............\....\resource.h,728,2010-04-13
..............\....\StdAfx.cpp,206,2010-04-13
..............\....\StdAfx.h,1054,2010-04-13
..............\....\test.aps,20680,2014-08-03
..............\....\test.clw,906,2014-08-03
..............\....\test.cpp,2035,2010-04-13
..............\....\test.dsp,5009,2010-04-13
..............\....\test.dsw,604,2010-04-13
..............\....\test.h,1302,2010-04-13
..............\....\test.ncb,91136,2014-08-03
..............\....\test.opt,48640,2014-08-03
..............\....\test.plg,816,2014-08-03
..............\....\test.rc,5404,2010-04-13
..............\....\testDlg.cpp,6643,2010-04-13
..............\....\testDlg.h,1754,2010-04-13
..............\串口上位机VC%2B%2B.doc,596480,2010-04-13

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • comm_source11
    Visual c++实践与提高——串口通信与工程应用篇10源代码(Visual c++ practice and improve- serial communication and project source code (Application) 10)
    2011-10-02 21:01:16下载
    积分:1
  • C-Sharp-serial-control-relay-module
    C#写的控制串口继电器模块的代码,通过发送指令来控制多路串口继电器的开关。(Serial port control relay module C# to write the code, switch by sending commands to control multiple serial relay.)
    2015-03-19 15:11:51下载
    积分:1
  • CserialPort类源码
    VC++简单而强大的多线程串口编程工具,该CSerialPort类封装了串口通信的基本 数据和方法(VC simple and powerful multithreaded serial programming tools, the CSerialPort type of serial communications package of basic data and methods)
    2020-06-26 07:20:01下载
    积分:1
  • SmartCom(0.5.4)
    串口调试工具,包含自动计算MODBUS crc校验码,是工具非源码(tiaoshi gongju)
    2020-12-19 22:49:10下载
    积分:1
  • pack
    C++串口通信代码,接收下位机的数据点,并在前面板画出图形。(数据格式* , , /)内附STM32串口发送数据程序(C++ serial communication code, receive under the data points, and the front panel to draw graphics. (Data format,*, /) containing STM32 serial transmit data program)
    2013-10-28 20:14:38下载
    积分:1
  • Com
    串口通讯类及其例子程序,很有用的串口调试范列(Serial Communication category and examples of procedures, useful for debugging serial Fan out)
    2007-09-11 18:40:57下载
    积分:1
  • 温度数据采集并实时显示
    串口温度数据采集并实时显示 读串口数据的原理是,只要当有数据向串口发数据来时,计算机就会自动将其数据写到一个特定的缓冲区,我们只要写程序去读那个特定的缓冲区就可以了. 有数据向串口发过来时,程序可以将数据接收到,接收的数据是字符型的,那么将数据转化为数字型的,再将这个数据的大小作为画图的某一个点的纵坐标,横坐标为数据的序号.将这些点用线连起来就是一个曲线图了,这个就是图形显示基本原理. 查看原来的数据的原理也是这样的,不同的地方就是,数据是从文件中来,同样的也是将多个数据分成一个一个的,然后这一个数据的大小就是画图的某一个点的纵坐标,横坐标同样为数据的序号,再将这些点用线连起来就是曲线图. 图形能移动的原理,是我们首先改变的只是数据,图形并没有变,但图形的形式是由这些数据来确定的,当数据发生变化后,我们通过刷新显示区来变化的.(Serial temperature data acquisition and real-time serial data reading the principle is, as long as when a serial data to the data, the computer will automatically writes data to a specific buffer, we can write specific procedures read that the buffer zone would be fine. Serial data to be sent, process data can be received, the receiving of data is the character, then transform data into digital type, and then the size of the data as a drawing of a point Ordinate, the abscissa serial data. these points will be used to link line is a curve, this is the graphic display the basic tenets. View the original data is the same principle, the difference is, the data from the file, the same data also will be divided into a number one, and then this one is the size of the data to draw a certain point )
    2020-06-26 07:40:02下载
    积分:1
  • Pelco-D-based-dll-project-for-PTZ
    基于Pelco-D协议的云台串口控制动态链接库(Pelco-D based dll project for PTZ)
    2014-10-10 14:28:07下载
    积分:1
  • common-master
    网上整理下载的非常好的串口程序,功能强大,代码质量也很高。(About serial communication)
    2015-07-15 11:51:30下载
    积分:1
  • PendMove
    常用RS232串口通用库类,可直接使用,谢谢大家~(The common library of the RS232)
    2013-08-31 22:13:51下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载