搜索资源列表
communicationfunctiontesting
- 该程序的功能是利用BIOS的INT 14H号功能调用,将指定的数据从串行口发送出去。在发送过程中,程序不断检测通信线路状态,只有在“发送保持寄存器空”的情况下才发送下一个字符。 整个程序有主函数MAIN()及三个函数SEND(),INIT(),LINETEST()组成。MAIN()是程序的入口并控制数据的发送;INIT()函数提供对串行异步通信的初始化;SEND()函数将指定数据逐一发送出去;LINETEST()函数用于在发送数据前检测通信线路状态。 利用BIOS 功能调用进行串行异步
基于C语言的RS232串行接口通信实现
- 串口通信是一种广泛使用且实用的通信方式,介绍RS232串行通信的联结方式,研究利用c语言编程实 现RS232串行通信的过程.结合实际应用,在约定双方串行通信协议的基础上,运用C语言开发的串行通信软 件,实现了企业生产线产品测试平台和嵌入式EMB主控机的串行数据通信.
Comm
- 在C#.net平台上实现串口通信编程 并可以通过串口实现收发数据
RS232
- 用C#通过RS232来实现串口通信,并可对数据实现解析,供用户根据需求查看数据内容,并且可对数据进行分类查询。-To use C# to achieve through the RS232 serial communication, and can achieve resolution of the data for users to view data on demand content, and can classify the data query.
C_Sharp_SerialPort
- 本工程采用Visual Studio 2005平台,用C#实现了串口收发通信程序的设计,具有良好的显示和控制界面,能够实时观察收发的数据。文件中包含工程文件,C#源代码,串口操作的底层API等文件。-The project uses Visual Studio 2005 platform, using C# implements serial communication program transceiver design, good display and control interface
Form1
- 用C#编写的串口通信程序,能自动扫描当前PC机有那几个端口有用,能接受和发送数据。程序简单,易懂-Written with C# serial communication program can automatically scan the current PC, there are several ports that useful, to receive and send data. Process simple, easy to understand
Demo
- C#写的串口通信工具,可以发送PDU格式编码,同时接收串口通信数据。-A program written in CSharp, which is used for serial port communcation.
CommPort
- 窗口式串口通信程序,可以实现数据的接收和发送-Window-type serial communication program that can receive and send data
Serial.1
- 串口通信,发送数据,让单片机接收你的数据-Serial communication to send data to the microcontroller to receive your data
chuank
- 实现简单的串口通信,可以接收并且显示数据- Simple serial communication , can receive and display data
comcool_code
- 实现串口通信,通过虚拟串口发送通信信息。串口通讯应用程序中实现多任务,多任务可以使串口通讯应用程序在同一时间处理更多的任务,例如:读数据任务,发送数据任务,GUI任务等。-failed to translate
chuankou
- 在VC环境下利用MFC编程的一个串口通信程序,通过串口发送数据并在界面中显示曲线-In VC MFC programming environment using a serial communication program, and send data through the serial interface display curve
serialport
- C# 串口通信 serialport串口通信 在.net环境下实现对单片机的数据的发送和接收-csharp serialport
SCI
- 串口通信,主要是飞思卡尔芯片的串口中断接收和数据发送,串口设置都在程序中设置好了-the serial ports transmit
ExternalCommunicationClient
- 天宝S3 全站仪通信开发程序,全站至客户端数据通信,通信方式串口或TCP可选-Trimble S3 Total Station Communication Development Program, the whole point to the client data communications, communication optional serial or TCP
05198830CRC
- 用于计算字节型数据的CRC16校验,用于串口通信中数据正确性的校验-calculate CRC-16 byte ,RS232 conmunication
AD转换串口通信
- 89c52的A/D转换测试及串口数据及数码管显示程序,已经调试成功。
PM2.5-Display
- 利用c#实现串口的通信,得到数据后进行解析显示-serial communication
串口助手
- C#代码实现简单的串口通信,可与下位机进行数据传输(C# code realizes simple serial communication, and data transmission can be carried out with the lower computer)
C#串口通讯
- 用于与下位机进行串口通讯,RS-232这种适配于上位机和PC端进行连接,RS-232只限于PC串口和设备间点对点的通信。它很简单的就可以进行连接,由于串口通讯是异步的,也就是说你可以同时向两端或者更多进行数据发送,它们之间的传输数据类型是byte,串口通信最重要的参数是波特率、数据位、停止位和奇偶校验。