搜索资源列表
comcool_code
- 一个关于通信方面的类,用于串口异步通信 -one of the categories of communications for asynchronous serial communications
communicationfunctiontesting
- 该程序的功能是利用BIOS的INT 14H号功能调用,将指定的数据从串行口发送出去。在发送过程中,程序不断检测通信线路状态,只有在“发送保持寄存器空”的情况下才发送下一个字符。 整个程序有主函数MAIN()及三个函数SEND(),INIT(),LINETEST()组成。MAIN()是程序的入口并控制数据的发送;INIT()函数提供对串行异步通信的初始化;SEND()函数将指定数据逐一发送出去;LINETEST()函数用于在发送数据前检测通信线路状态。 利用BIOS 功能调用进行串行异步
RS485Comm
- RS485串口异步通信C++.NET源代码
yibutongxin
- 运用RS485显示串口的通信,本程序采用异步通信方式
汇编串口
- 本程序是通用同步和异步串行接收器和转发器(USART)在异步状态下使用中断 * 方式进行全双工接收和发送数据的通信程序。共包括下面列表中这四个子程序。这 * 四个子程序的具体使用方法请参考各自的说明。-this procedure is common synchronous and asynchronous serial receivers and transmitters (USARTs) in the state to use asynchronous interrupt * for ful
串行通信中的异步和同步方式
- 基于VC60的串行通信中的异步和同步方式,对于VC控制串口很有帮助!
vc-serial-communication-vc串口通信的各种方式
- vc串口通信的各种方式,包括api串口监听,同步,异步方式和activex控件方式-vc serial communication of a variety of ways, including monitoring api serial, synchronous, asynchronous and activex control methods
RS232
- RS232串口通信,由89c52单片机控制。异步通信,内含两个程序。-RS232 serial communication, controlled by the 89c52 microcontroller. Asynchronous communication, contains two programs.
serial
- 串口异步通信,方法简单方便,可嵌入在工业控制当中,也可做为串口入门学习的例子程序!-Serial asynchronous communication method is simple and convenient, which can be embedded in industrial control, serial port can also be used as examples of entry-learning program!
c51UART
- c51 串口 c51 串口异步通信-serial c51 c51 c51 serial asynchronous serial communication
TestComm
- 用vc实现异步和同步通信对串口进行读写数据。里面含有两个工程,一个是异步,一个是同步通信。-Achieved with the vc on the serial asynchronous and synchronous communication to read and write data. Which contains two projects, one is asynchronous and a synchronous communication.
34567798708
- 用VB实现的RS232异步串行通信的实例,可通过串口实现通信-Using VB' s RS232 asynchronous serial communication instance, can communicate through the serial port
SerialPort_NEW_API
- 串口异步IO 多线程通信,使用WIN32 API,基本实现成功-The serial asynchronous IO multithreading communication
API-serial-asynchronous-code
- 本例程采用 windows API编写,属于串口异步非阻塞操作,采用线程监视、windows事件、自定义消息,其中数据接收一块分别采用SetCommMask、WaitCommEvent 设置等待串口通信事件,是初学者不可多得的学习资料,该历程亦可直接用在实际工程当中,很具有收藏与学习价值,压缩包中还包含相关的参考文档,望大家好好利用-This routine uses the Windows API to write, is a the serial asynchronous non-bl
IOSerial
- 串口实现通信功能,采用的是异步I/O的实现方法。-Serial communications functions, using asynchronous I/O implementations.
com_exe
- windows下异步使用串口的类。已经封装得非常好,线程安全。欢迎下载使用(windows serial port use.)
149异步串行通信(点对点通信)
- msp430f149点对点异步串行串口通信(MSP430F149 point to point serial communication)
串行通信
- 计算机与单片机之间实现串行通信,10位异步通信,波特率1200,采用定时器1产生,实现计算机串口调试助手与单片机之间的双向通信;(The serial communication between computer and MCU is achieved. Asynchronous communication with 10 bits and baud rate of 1200 are generated by timer 1, which realizes two-way communicati
串口异步通信
- 串口的异步通信方式示例。常用于pc机和装置之间的串口通信。
C#串口通讯
- 用于与下位机进行串口通讯,RS-232这种适配于上位机和PC端进行连接,RS-232只限于PC串口和设备间点对点的通信。它很简单的就可以进行连接,由于串口通讯是异步的,也就是说你可以同时向两端或者更多进行数据发送,它们之间的传输数据类型是byte,串口通信最重要的参数是波特率、数据位、停止位和奇偶校验。