登录
首页 » Visual C++ » RenesasSerial

RenesasSerial

于 2012-03-25 发布 文件大小:26601KB
0 409
下载积分: 1 下载次数: 25

代码说明:

  专门为瑞萨智能车设计的串口工具,可同时发送六组数据,很好的上位机程序(Designed for renesas intelligent car design of serial tools, can also send six sets of data, good PC program )

文件列表:

RenesasSerial
.............\Debug
.............\.....\RenesasSerial.bsc,5465088,2012-02-05
.............\.....\RenesasSerial.exe,139321,2012-02-05
.............\.....\RenesasSerial.ilk,262612,2012-02-05
.............\.....\RenesasSerial.obj,19589,2012-02-02
.............\.....\RenesasSerial.pch,7009644,2012-02-02
.............\.....\RenesasSerial.pdb,443392,2012-02-05
.............\.....\RenesasSerial.res,13728,2012-02-02
.............\.....\RenesasSerial.sbr,0,2012-02-02
.............\.....\RenesasSerialDlg.obj,62258,2012-02-05
.............\.....\RenesasSerialDlg.sbr,0,2012-02-05
.............\.....\SerialPort.obj,27850,2012-02-02
.............\.....\SerialPort.sbr,0,2012-02-02
.............\.....\StdAfx.obj,105891,2012-02-02
.............\.....\StdAfx.sbr,1375046,2012-02-02
.............\.....\vc60.idb,238592,2012-03-09
.............\.....\vc60.pdb,421888,2012-02-05
.............\ipch
.............\....\renesasserial-6db7374a
.............\....\......................\renesasserial-1b458347.ipch,69861376,2012-02-02
.............\ReadMe.txt,3705,2012-01-31
.............\RenesasSerial.aps,28120,2012-02-09
.............\RenesasSerial.clw,2428,2012-03-09
.............\RenesasSerial.cpp,2161,2012-01-31
.............\RenesasSerial.dsp,4596,2012-02-02
.............\RenesasSerial.dsw,534,2012-01-31
.............\RenesasSerial.h,1401,2012-01-31
.............\RenesasSerial.ncb,132096,2012-03-09
.............\RenesasSerial.opt,106496,2012-03-09
.............\RenesasSerial.plg,260,2012-03-09
.............\RenesasSerial.rar,452,2012-02-02
.............\RenesasSerial.rc,10222,2012-02-02
.............\RenesasSerial.sdf,51204096,2012-02-02
.............\RenesasSerial.sln,892,2012-02-02
.............\RenesasSerial.vcxproj,8107,2012-02-02
.............\RenesasSerial.vcxproj.filters,2458,2012-02-02
.............\RenesasSerial.vcxproj.user,143,2012-02-02
.............\RenesasSerialDlg.cpp,20678,2012-02-03
.............\RenesasSerialDlg.h,3155,2012-02-03
.............\res
.............\...\icon2.ico




.............\...\RenesasSerial.rc2,405,2012-01-31
.............\...\WORKSP.ICO,1078,2012-02-01
.............\resource.h,2121,2012-02-01
.............\SerialPort.cpp,19285,2012-03-09
.............\SerialPort.h,2747,2012-01-30
.............\StdAfx.cpp,215,2012-01-31
.............\StdAfx.h,1054,2012-01-31

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

发表评论

0 个回复

  • Com_N
    本程序调用了微软自带的mscomm控件,实现com口的数据接收,读者可自行添加发送数据功能。内附mscomm.ocx控件及其注册方法,本程序是用的静态链接库,为的是能在没有vc库的机器上也可以运行,所以个头大了点。(Microsoft's own mscomm controls, I realize com data reception, readers can add their own functions to send data. Enclosing mscomm.ocx control and registration method, the procedure is used in the static link library, for the in the absence of vc for the machine can also run, giving the larger point.)
    2005-07-31 09:50:35下载
    积分:1
  • chuankou
    实现串口编程的功能,使用vc语言,功能比较多,可实现端口、流量等控制 (To achieve serial programming function, use the vc language)
    2010-03-03 17:21:34下载
    积分:1
  • VCPP-Serial-host-computer
    实现串口通信的编程,关于类以及继承的一些使用方法,新手可以参考。(Serial communication programming, use classes and inheritance, the novice can refer to.)
    2013-05-03 09:07:54下载
    积分:1
  • VSPD-VisualC-6
    可虛擬兩個RS-232或者是多個RS-232互傳資訊,此源码維VisualC-6所編寫。(Can be a virtual two RS-232 or RS-232 over pass each other information, this source code written by Victoria VisualC-6.)
    2020-11-27 09:09:29下载
    积分:1
  • DSP-com
    说明:  介绍DSP与上微机的串口通信和功能设置,及通信调试(introduced DSP and PC on the serial communications and functionality, and communication Debugging)
    2006-04-25 10:04:22下载
    积分: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
  • VCComm
    VC从串口读取数据并实时绘制曲线图,非常好用。(VC data from the serial port to read real-time rendering curve is very useful.)
    2010-07-30 12:32:16下载
    积分:1
  • UDP
    vc写的基于udp的串口通信简单实例 (Udp serial communication instance, a simple small program)
    2012-11-26 16:40:22下载
    积分:1
  • Show_Curve
    Visual Basic基于天平称重,串口接收数据,在窗体上进行曲线显示(Show Curve)
    2011-01-20 16:26:37下载
    积分:1
  • PC-based-serial-communication
    基于Visual C++串口与下位机通信(Based on Visual C++ serial PC program to communicate with the microcontroller)
    2014-12-06 22:17:30下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载