搜索资源列表

  1. 串口通信1

    0下载:
  2. 用从c++编写的串口通信程序,内有详细的了解并设置串口参数的源码,并含通信原理-prepared from the use of serial communication program, with detailed understanding of serial port parameters and set up the source code, and communication with Principle
  3. 所属分类:串口编程

    • 发布日期:2024-05-20
    • 文件大小:47104
    • 提供者:沈秀峰
  1. 嵌入式 linux串口实例

    0下载:
  2. 嵌入式串口实例,有部分测试程序,功能:每隔2秒发送“1234567890”,并打印内容。接受也是每2秒一次,并打印内容,出错时打印出错信息-example, some of the test procedures, functions : every two seconds to send "1234567890", and print content. Each also received a two second
  3. 所属分类:微处理器(ARM/PowerPC等)

    • 发布日期:2024-05-20
    • 文件大小:3072
    • 提供者:陈明
  1. vb串口通讯

    0下载:
  2. 这个文件是有关系统串口通信的实例,作为学习串口通信入门来说是一个很好的参考实例,它是基于vb语言的,而且其中很多代码可以直接移植 -this paper is on the serial communication system examples, as a learning portal Serial Communication is a very good reference example, it is based on vb l
  3. 所属分类:串口编程

    • 发布日期:2024-05-20
    • 文件大小:82944
    • 提供者:伍军伟
  1. C语言串口

    0下载:
  2. 不错的C语言版串口程序,主要是关于SPI同步传输串口的-good version of the C language Serial procedures, primarily on SPI serial synchronous transmission of
  3. 所属分类:串口编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:微风
  1. 串口通信编程实践

    0下载:
  2. : Visual C++/Turbo C串口通信编程实践 龚建伟, 熊光明编著 随书源码-: Visual C/Turbo C serial communication programming practice Dan, bears bright compilation of source books
  3. 所属分类:串口编程

    • 发布日期:2024-05-20
    • 文件大小:27637760
    • 提供者:安新
  1. 51串口上的128X64LCD源程序

    0下载:
  2. 串口上的128X64的LCD源程序!已编译并调试通过!-serial port on the LCD source of the built! Compiling and Debugging has passed!
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-20
    • 文件大小:15360
    • 提供者:李平
  1. C++爱好者 - Victor 串口控件, 版本 1_3_3_4a

    0下载:
  2. Victor 串口控件, 版本 1.3.3.5 包括控件源码、帮助及演示程序 -Victor Serial control, version 1.3.3.5, including source control, and demonstration program to help Victor Serial control, version 1.3.3.5, including source control, and Demonstrat
  3. 所属分类:3D图形编程

    • 发布日期:2024-05-20
    • 文件大小:5120
    • 提供者:
  1. 蓝牙串口

    0下载:
  2. 该程序是实现蓝牙串口通信的,在计算机上用vb进行编程,打开蓝牙的uart口,从而打开蓝牙的串口。-Bluetooth serial communications, computers programmed with vb, Bluetooth UART open mouth, open the Bluetooth Serial Port.
  3. 所属分类:串口编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:郭天文
  1. 串口编程实例

    0下载:
  2. C51写的串口编程的范例,供正在开发串口的兄弟可以参考!-C51 write serial programming model for the serial port is being developed can refer brothers!
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-20
    • 文件大小:56320
    • 提供者:唐建丰
  1. 串口调试程序shili

    0下载:
  2. VC++实现串口通信,觉得好的人顶详细介绍串口通信-VC serial communications, the top people feel good detail Serial Communication
  3. 所属分类:串口编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:洋镇反
  1. 串口以太网通信转换

    0下载:
  2. 该程序用于RS232串口、以太网通信转换的例子,看看可能对你有帮助-procedures for the RS232 serial ports, Ethernet switch example, you might look at the help
  3. 所属分类:通讯编程

    • 发布日期:2024-05-20
    • 文件大小:53248
    • 提供者:王辉
  1. 51与pc串口通讯

    0下载:
  2. 51与pc串口通讯,主要用c语言编写,相信对初学者会有好处的-51 pc with serial communications, the main c language, I think it would be beneficial to the beginners
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-20
    • 文件大小:135168
    • 提供者:张顺法
  1. 串口测试程序

    0下载:
  2. 串口测试程序,波特率、串口选择等多种功能完善,推荐下载。-serial testing procedures, baud rate, serial choice of a variety of functions, recommended download.
  3. 所属分类:串口编程

    • 发布日期:2024-05-20
    • 文件大小:22528
    • 提供者:于晶
  1. 一个串口包装类及演示程序

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

    • 发布日期:2024-05-20
    • 文件大小:49152
    • 提供者:张权
  1. 用VC实现PC机与单片机串口通讯

    1下载:
  2. PC机与单片机串口通讯可以通过多种方式来实现,在这里只介绍使用MSCOMM控件进行通讯。-PC and microcontroller serial communications to be many ways to achieve here in only MSCOMM controls on the use of communication.
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-20
    • 文件大小:5120
    • 提供者:feng
  1. 串口模拟

    0下载:
  2. 当串口不够用的时候,可以利用其他IO口进行模拟串口,很哟用-enough time to use, can use other IO serial simulation, with very yo
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:
  1. 一个基于API的VB.net串口通讯类

    1下载:
  2. 一个基于API的Vb.net的串口通讯控件,使得串口编程更加方便-an API based on the Serial Communications Programming controls, making programming more convenient Serial
  3. 所属分类:串口编程

    • 发布日期:2024-05-20
    • 文件大小:21504
    • 提供者:
  1. 单片机串口模拟

    0下载:
  2. 当串口不够用的时候,我们可以利用IO口进行串口模拟,很好用-when the time is not enough, we can use Serial IO mouth simulation is useful
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:
  1. 基于中断的串口驱动及显示程序

    0下载:
  2. 基于中断的串口驱动及显示程序,收发缓冲区实体,收发缓冲区读写指针,串口初始化,串口缓冲区初始化,串口中断服务子程序-based on the serial interrupt-driven and show procedures, TX buffer entities, TX buffer literacy target, serial initialization, serial buffer initialization, inte
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:单敏
  1. pc机串口

    0下载:
  2. pc机串口通信,可以实现计算机与单片机,或者是两个单片机之间的通信-the communication through PC serial, between PC and SCM, or two SCM
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-20
    • 文件大小:12288
    • 提供者:邱林
« 1 2 ... 7 8 9 10 11 1213 14 15 16 17 ... 50 »

源码中国 www.ymcn.org