CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 通讯/手机编程 搜索资源 - buffer

搜索资源列表

  1. XORMOD双缓冲示例

    0下载:
  2. 用JAVA编写的建议的XORMOD双缓冲示例,供练习使用-prepared using JAVA XORMOD the recommendations of the two-sample buffer for the use of practice
  3. 所属分类:J2ME

    • 发布日期:2008-10-13
    • 文件大小:2476
    • 提供者:宿星辉
  1. buffers

    0下载:
  2. buffer example. buffer example. buffer example.
  3. 所属分类:Symbian

    • 发布日期:2008-10-13
    • 文件大小:2454
    • 提供者:刘正贤
  1. 串行通讯控件

    0下载:
  2. 本文讲述的利用通讯控件发送与接收通讯数据都是基于二进制来实现的,基于文本的情况基本与此类似。要想利用好通讯控件还有其他一些应该注意的地方,比如波特率的设置、接收与发送缓冲区的设置以及通讯过程中的延时问题的处理等等。-This paper describes the use of communications controls send and receive communications are based on the binary data to achieve, based on the
  3. 所属分类:串口编程

    • 发布日期:2008-10-13
    • 文件大小:7302
    • 提供者:王胜
  1. F320UsbTest

    0下载:
  2. USB device的PC机测试程序,可以通过设置buffer的大小来测试buffer对USB传输速度的影响。-USB PC device testing procedures can set the buffer size to test buffer for the USB transmission speed impact.
  3. 所属分类:USB编程

    • 发布日期:2008-10-13
    • 文件大小:27343
    • 提供者:叶振风
  1. 串行口通信程序,可以控制缓冲

    0下载:
  2. 串行口通信程序,可以控制缓冲。不错的。大家都来下啊。-serial port communication procedures can be controlled buffer. Good. All to the next ah.
  3. 所属分类:串口编程

    • 发布日期:2008-10-13
    • 文件大小:3436
    • 提供者:中华红客
  1. s_com

    0下载:
  2. for serial communication single-slave with buffer sum check-for serial communication single-slave wi th buffer sum check
  3. 所属分类:串口编程

    • 发布日期:2008-10-13
    • 文件大小:1122
    • 提供者:王聪颖
  1. 串口缓冲区编程

    0下载:
  2. 波特率可变;中断方式接收、发送;收发独立8字节缓冲区;可选择是否在满缓冲区后丢弃数据-variable baud rate; Disruption to receive, send; TX independent 8-bit byte buffer; the choice of whether the buffer zone after the age of discarded data
  3. 所属分类:串口编程

    • 发布日期:2010-07-01
    • 文件大小:14070
    • 提供者:wickman
  1. PCCOM-SRC

    0下载:
  2. 用C++写的RS232串口异步通讯功能模块,支持16550 UART芯片,中断收发数据,波特率最大115200bps,自定义收发数据缓冲大小,支持软硬件流控。-C wrote asynchronous RS232 serial communication module, 16550 UART chip, Transceivers interruption data, 115,200 bps maximum baud rate, since the definition of sending an
  3. 所属分类:串口编程

    • 发布日期:2008-10-13
    • 文件大小:103531
    • 提供者:alex
  1. GPSSerialRevSoft

    0下载:
  2. GPS数据采集程序大致可分4个模块:串行通信、数据库处理、控制和显示模块。串口通信技术使用了自己编写的CSerialPortEx类;接收串口数据时使用隐式调用,CserialPortEx在串口数据到达时讲数据发送到程序主窗口。控制模板每隔一段时间察看一次主创口串口数据接收缓冲区,并对符合要求的数据进行处理后通过数据库处理模块存储导数据库中,同时请求显示模块跟新纪录,语言环境:Visual C++6.0。 -GPS data collection procedures can be large
  3. 所属分类:GPS编程

    • 发布日期:2008-10-13
    • 文件大小:124671
    • 提供者:大海
  1. bulkusb

    0下载:
  2. usb bulk 传输例程。 * The bulkusb driver is a generic function driver, based on the Windows Driver Model (WDM). * Supports Plug and Play(PnP), Power Management(PM), Windows Management Instrumentation (WMI) and the Selective Suspend (SS) features.
  3. 所属分类:USB编程

    • 发布日期:2008-10-13
    • 文件大小:56118
    • 提供者:James
  1. spcomm

    0下载:
  2. // This Communications Component is implemented using separate Read and Write // threads. Messages from the threads are posted to the Comm control which is // an invisible window. To handle data from the comm port, simply // attach a handler to
  3. 所属分类:串口编程

    • 发布日期:2008-10-13
    • 文件大小:21334
    • 提供者:skyblue
  1. comm

    0下载:
  2. unit comm interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, SPComm, StdCtrls, ExtCtrls type TFcomm = class(TForm) Comm1: TComm GroupBox1: TGroupBox Memo1: TMemo Memo2: TM
  3. 所属分类:串口编程

    • 发布日期:2008-10-13
    • 文件大小:153051
    • 提供者:liu
  1. 20050120091918_MySerialPort[2004-01-18-01]

    0下载:
  2. 从串口读取数据,有两种方法,1、每接收一个EV_RXCHAR,就用ReadFile读一次,这样我觉得太恐怖了。2、接收到一个EV_RXCHAR后,等一定数据量的CPU周期(GetTickCount),再一次性读取缓冲区里的数据。这样做,一般情况下不会有问题,但是,如果数据很多,过了“一定数据量的CPU周期”,还没收完数据怎么办?就会少读数据了。 我用三个线程序来完成串口数据的接收,其实就是第一种方法的变种: 一个侦听EV_RXCHAR,一个对EV_RXCHAR进行分析,其实就是超时判断。如果接收
  3. 所属分类:串口编程

    • 发布日期:2008-10-13
    • 文件大小:46411
    • 提供者:刘云鹏
  1. 一个串口包装类及演示程序

    0下载:
  2. 从串口读取数据,有两种方法, 1、每接收一个EV_RXCHAR,就用ReadFile读一次,这样我觉得太恐怖了。 2、接收到一个EV_RXCHAR后,等一定数据量的CPU周期(GetTickCount),再一次性读取缓冲区里的数据。这样做,一般情况下不会有问题,但是,如果数据很多,过了“一定数据量的CPU周期”,还没收完数据怎么办?就会少读数据了。 我用三个线程序来完成串口数据的-read data from the serial port, there are two methods, one
  3. 所属分类:串口编程

    • 发布日期:2008-10-13
    • 文件大小:49061
    • 提供者:张权
  1. myWindowsSerialportTools

    0下载:
  2. 1:支持串口数据16进制格式收发。 2:支持9以上的串口通信。 3:支持自动收发保存数据。 4:自由控制数据显示。 5:实时显示收发数据字节大小以及串口状态。 6:智能清空缓冲数据。 7:采用polling模式,以便移植到linux。 8:全中文对话框。 9:数据收发精准,增加延时处理。 10:支持短信猫调试,智能识别回车符。 11:界面清爽,布局人性化。 -1: Support for sending and receiving serial dat
  3. 所属分类:Com Port

    • 发布日期:2017-04-04
    • 文件大小:83000
    • 提供者:
  1. Buffer

    0下载:
  2. symbian c++ example buffering and string buffer
  3. 所属分类:Symbian

    • 发布日期:2017-04-13
    • 文件大小:1907
    • 提供者:Konstantin
  1. testdoublebuffer

    0下载:
  2. Symbian双缓冲画界面,希望对大家的UI设计有帮助-Symbian painting double buffer interface for all of us hope that the UI design to help
  3. 所属分类:Symbian

    • 发布日期:2017-04-24
    • 文件大小:22472
    • 提供者:ncljh
  1. SerialComBuffering

    0下载:
  2. 串口通讯,关于C#的 buffer 描述-comport
  3. 所属分类:Com Port

    • 发布日期:2016-01-27
    • 文件大小:3640
    • 提供者:Hans
  1. Design-Low-Speed-Buffer-For-Usb

    0下载:
  2. Design Low Speed Buffer For Usb
  3. 所属分类:USB develop

    • 发布日期:2017-03-29
    • 文件大小:245554
    • 提供者:farid
  1. translation-buffer

    0下载:
  2. General Translation buffer! for different frequency,data width translation propose!
  3. 所属分类:Modem program

    • 发布日期:2017-05-05
    • 文件大小:3754
    • 提供者:min
« 12 3 4 5 »
搜珍网 www.dssz.com