串行通讯接口,SPI
1)SPI串行通讯接口
2)SCI(Serial Communication Interface)SCI串行通讯接口
3)serial port communication串行口通讯
1.This paper is mainly about how to use C language calling assembling language Micro - 8086 to accomplish the RS - 232C serial port communication between the upper computer and the coming intellingent instruments.本文利用C语言嵌套8086汇编语言实现了上位计算机与下位智能仪器的RS-232C串行口通讯,探讨了在西文状态下实现汉字菜单的制作。
英文短句/例句

1.The download mode consists of serial port communication, Ethernet communication, etc.下载方式可采用串行口通讯、太网通讯等多种方式。
2.Interface of Serial Communication Programming in Win32;32位视窗系统串行通讯的串口设置
3.A Design of Signal Adaptor of Serial Communication Port Between PLC and PC;PLC与PC机串行通讯口之间信号适配器设计
4.Serial Communication and Application of S7-300 PLCS7-300 PLC串行通讯及应用
5.Communication frames begin with a start bit and end with a stop bit.串口通讯以起始位开始,以终止位结束。
6.Study and Design of Embedded Serial Server;嵌入式串口通讯服务器的研究和设计
7.The RS-485 Communication in Kiln Control System;窑炉控制系统中的RS-485串口通讯
8.The Implementation and Comparision of Serial Communication in Linux and Windows;串口通讯Linux和Windows下的实现与比较
9.Implementation of Serial Port Communication with One - chip Computer by Using VC ++ and MFC;用VC++和MFC实现与单片机的串口通讯
10.Implementation of multi-port serial card communication based on RTAI-Linux基于RTAI-Linux的多串口卡通讯实现
11.Implementation of Communication between PDA and DSP Through Virtual Serial Port Based on USB基于USB的PDA与DSP的虚拟串口通讯实现
12.Muti-UART Technology Based on C8051F020 Single-microchip基于C8051F020单片机的多串口通讯技术
13.Communications of Gateways to Serial Port Based on TCP/IP基于TCP/IP的网关转串口通讯
14.Implementation of Multi-serial Communication Based on DOS基于DOS平台的多串口通讯的实现
15.Baud Rate Setting and Its Error Analysis in Serial Communication串行通讯中的波特率设置和误差分析
16.Software Design of Serial Port interface of LabVIEW Express 7.0 and ARM;LabVIEW Express 7.0与ARM的串行数据通讯程序设计
17.A method of Microcontroller serial communication based on outer interrupt;基于外部中断的单片机串行通讯技术
18.The Impelentaion of Serial Communication Between PC and PLC by LabWindows/CVI用LabWindows/CVI实现PC与PLC串行通讯的方法
相关短句/例句

SCI(Serial Communication Interface)SCI串行通讯接口
3)serial port communication串行口通讯
1.This paper is mainly about how to use C language calling assembling language Micro - 8086 to accomplish the RS - 232C serial port communication between the upper computer and the coming intellingent instruments.本文利用C语言嵌套8086汇编语言实现了上位计算机与下位智能仪器的RS-232C串行口通讯,探讨了在西文状态下实现汉字菜单的制作。
4)RS-422 interface of series communicationRS-422串行通讯接口
5)interface standard of serial communication串行通讯接口标准
6)RS-232/422 serial communication interfaceRS-232/422串行通讯接口
延伸阅读

串行通讯简单认识一条信息的各位数据被同时传送的通讯方式称为并行通讯。并行通讯的特点是:各数据位同时传送,传送速度快、效率高,但有多少数据位就需多少根数据线,因此传送成本高,且只适用于近距离(相距数米)的通讯。  一条信息的各位数据被逐位按顺序传送的通讯方式称为串行通讯。串行通讯的特点是:数据位传送,传按位顺序进行,最少只需一根传输线即可完成,成本低但送速度慢。串行通讯的距离可以从几米到几千米。  根据信息的传送方向,串行通讯可以进一步分为单工、半双工和全双工三种。信息只能单向传送为单工;信息能双向传送但不能同时双向传送称为半双工;信息能够同时双向传送则称为全双工。 串行通讯又分为异步通讯和同步通讯两种方式。在单片机中,主要使用异步通讯方式。  MCS_51单片机有一个全双工串行口。全双工的串行通讯只需要一根输出线和一根输入线。数据的输出又称发送数据(TXD),数据的输入又称接收数据(RXD)。串行通讯中主要有两个技术问题,一个是数据传送、另一个是数据转换。数据传送主要解决传送中的标准、格式及工作方式等问题。数据转换是指数据的串并行转换。具体说,在发送端,要把并行数据转换为串行数据;而在接收端,却要把接收到的串行数据转换为并行数据。