Microprocessors & Interfacing

Total Page:16

File Type:pdf, Size:1020Kb

Microprocessors & Interfacing Lecture Overview Microprocessors & Interfacing • Serial Communication – Concepts – Standards • USART in AVR Serial Input/Output Lecturer : Dr. Annie Guo S2, 2008 COMP9032 Week10 1 S2, 2008 COMP9032 Week10 2 Serial Communication System Why Serial I/O? Structure • Problems with Parallel I/O: – Needs a wire for each bit. Data From Source Data To Destination – When the source and destination are more than a n n few feet the parallel cable can be bulky and expensive. Transmit Data Received Data Buffer Buffer – Susceptible to reflections and induced noises for long distance communication. Serial Data R Tclock Parallel In/Serial Serial In/Parallel clock • Serial I/O overcomes these problems. Out Shift Register Out Shift Register TRANSMITTER RECEIVER S2, 2008 COMP9032 Week10 3 S2, 2008 COMP9032 Week10 4 Serial Communication System Serial Communication System Structure (cont.) Structure (cont.) • At the communication source: • At the communication destination: – The parallel interface transfers data from the –Rclock shifts each bit received into the Serial In source to the transmit data buffer. Parallel Out (SIPO) register. – The data is loaded into the Parallel In Serial Out – After all data bits have been shifted in, they are (PISO) register and Tclock shifts the data bits out transferred to the received data buffer. from the shift register to the receiver. – The data in the received data buffer can be read by an input operation via the parallel interface. S2, 2008 COMP9032 Week10 5 S2, 2008 COMP9032 Week10 6 Serial Communication Synchronous VS Asynchronous • There are two basic types of serial • Synchronous communications – Transmitter and receiver are synchronized – synchronous • Need extra hardware for clock synchronization – asynchronous – Having faster data transfer rate • Asynchronous – Transmitter and receiver use different clocks. No clock synchronization is required. – Used in many applications such as keyboards, mice, modems – The rest of this lecture focuses on Asynchronous communication S2, 2008 COMP9032 Week10 7 S2, 2008 COMP9032 Week10 8 UART UART Structure • The device that implements both transmitter and receiver in a single integrated circuit is called a UART (Universal Asynchronous Receiver/Transmitter). • UART uses least significant first order Tclock1 Rclock2 Transmitter Receiver – The least significant bit of data is transferred first Data Bus Data Bus • Data are transmitted asynchronously. Rclock1 Tclock2 – Clocks on both sides are not synchronized Receiver Transmitter – But receivers have a way to synchronise the data receiving operation with data transmission operation • UART is the basis for most serial communication UART UART hardware. S2, 2008 COMP9032 Week10 9 S2, 2008 COMP9032 Week10 10 UART Data Formats UART Data Formats (cont.) • Before transmission, data should be encoded • Typical bits in data transmission: – Many encoding schemes, such as ASCII – Start bit: When the transmitter has data to send, it first changes the line from the mark to the space level for one bit • Each encoded data is encapsulated with two bits time. This synchronises the receiver with transmitter. When – Start bit and stop bit the receiver detects the start bit, it knows to start clocking in the serial data bits. • Mark and space : the logic one and zero levels are – Data bits: representing a data, such as a character called mark and space. – Parity bit: used to detect errors in the data – When the transmitter is not sending anything, it holds the • For odd parity: the bit makes the total number of 1s in the data line at mark level, also called idle level. odd Optional Stop • For even parity: the bit makes the total number of 1s in the data Least Significant even. Parity Bit Bit Bit – Stop bit: added at the end of data bits. It gives one bit-time Mark between successive data. Some systems require more than one stop bit. Space Start Data Bits S2, 2008Bit COMP9032 Week10 11 S2, 2008 COMP9032 Week10 12 Data Transmission Rate Communication System Types • The rate at which bits are transmitted is called • Three ways that data can be sent in serial baud rate . communication system: • It is given in bits per second – Simplex system • Standard data rates – Baud: – Full-duplex (FDX) system 110, 150, 300, 600, 900, 1200, 2400, 4800, 9600, – Half-duplex (HDX) system 14400, 19200, 38400, 57800 S2, 2008 COMP9032 Week10 13 S2, 2008 COMP9032 Week10 14 Simplex System Full-Duplex (FDX) System – Data are sent in one direction only – Data are transmitted in two directions. • For example, computer to a serial printer. – It is called four-wire system, although only two – Simple signal wires and a common ground are sufficient. • If the computer does not send data faster than the printer can accept it, no handshaking signals are required. – Two signal wires are needed for this system. Terminal Computer Computer Printer S2, 2008 COMP9032 Week10 15 S2, 2008 COMP9032 Week10 16 Standards for the Serial I/O Half-Duplex (HDX) System Interface – Data are transmitted in two directions with only • Interface standards are needed to allow one pair of signal lines. different manufacturers’ equipment to be – Additional hardware and handshaking signals interconnected must be added to an HDX system. • Must define the following elements: – Handshaking signals – Direction of data flow Computer Computer – Types of communication devices. – Connectors and interface mechanical considerations. – Electrical signal levels. S2, 2008 COMP9032 Week10 17 S2, 2008 COMP9032 Week10 18 Standards for the Serial I/O Two RS232-C Connectors Interface (cont.) • Popular standards include RS-232-C, RS- 422, RS-423 and RS-485. – RS-232-C standard is used in most serial interface. – If the signals must be transmitted farther than 50 feet or greater than 20 Kbits/second, another DE9 pin assignments electrical interface standard such as RS-422, RS- 423 or RS-485 should be chosen. – For RS-422, RS-423 and RS-485, handshaking, direction of signal flow, and the types of communication devices are based on the RS-232- C standard. DB25 pin assignments S2, 2008 COMP9032 Week10 19 S2, 2008 COMP9032 Week10 20 RS-232-C Signal Definitions RS-232-C Signal Definitions (cont.) DE9 DB25 Signal Purpose DE9 DB25 Signal Purpose 1 PG Protective ground : this is actually the shield 8 5 CTS Clear to send : Sourced by DCE, received in a shielded cable. It is designed to be by DTE. CTS must be asserted before the connected to the equipment frame and may DTE can transmit data. be connected to external grounds. 3 2 TxD Transmitted data : Sourced by DTE and 6 6 DSR Data set ready : Sourced by DCE and received by DCE. Data terminal equipment received by DTE. Indicates that the DCE cannot send unless RTS, CTS, DSR and has made a connection on the telephone DTR are asserted. line and is ready to receive data from the terminal. The DTE must see this asserted 2 3 RxD Received data : Received by DTE, sourced before it can transmit data. by DCE. 7 4 RTS Request to send : Sourced by DTE, received 5 7 SG Signal ground : Ground reference for this by DCE. RTS is asserted by the DTE when signal is separate from pin 1, protective it wants to send data. The DCE responds by ground. asserting CTS. S2, 2008 COMP9032 Week10 21 S2, 2008 COMP9032 Week10 22 RS-232-C Signal Definitions (cont.) RS-232-C Interconnections DE9 DB25 Signal Purpose • When two serial ports are connected, the data rate, the number of data bits, whether parity is used, the 1 8 DCD Data carrier detect : Sourced by DCE, type of parity, and the number of stop bits must be received by DTE. Indicates that a DCE has set properly and identically on each UART . detected the carrier on the telephone line. Originally it was used in half-duplex • Proper cables must be used. There are four kinds of systems but can be used in full-duplex cables from which to choose, depending on the types systems, too. of devices to be interconnected. 4 20 DTR Data terminal ready : Sourced by DTE and – Full DTE – DCE cable received by DCE. Indicates that DTE is – Minimal DTE – DCE cable ready to send or receive data. – DTE – DTE null modem cable 9 22 RI Ring indicator : Sourced by DCE and – Minimal null modem cable received by DTE. Indicates that a ringing signal is detected. S2, 2008 COMP9032 Week10 23 S2, 2008 COMP9032 Week10 24 RS-232-C Interconnections (cont.) RS-232-C Interconnections (cont.) DE9 DB25 DB25 DE9 DE9 DB25 DB25 DE9 DTE DTE DCE DCE DTE DTE DCE DCE TxD 3 2 2 3 TxD TxD 3 2 2 3 TxD RxD 2 3 3 2 RxD RxD 2 3 3 2 RxD SG 5 7 7 5 SG SG 5 7 7 5 SG RTS 7 4 4 7 RTS RTS 7 4 4 7 RTS CTS 8 5 5 8 CTS CTS 8 5 5 8 CTS DCD 1 8 8 1 DCD DCD 1 8 8 1 DCD DSR 6 6 6 6 DSR DSR 6 6 6 6 DSR DTR 4 20 20 4 DTR DTR 4 20 20 4 DTR Full DTE – DCE cable Minimal DTE-DCE cable S2, 2008 COMP9032 Week10 25 S2, 2008 COMP9032 Week10 26 RS-232-C Interconnections (cont.) RS-232-C Interconnections (cont.) DE9 DB25 DB25 DE9 DE9 DB25 DB25 DE9 DTE DTE DTE DTE DTE DTE DTE DTE TxD 3 2 2 3 TxD TxD 3 2 2 3 TxD RxD 2 3 3 2 RxD RxD 2 3 3 2 RxD SG 5 7 7 5 SG SG 5 7 7 5 SG RTS 7 4 4 7 RTS RTS 7 4 4 7 RTS CTS 8 5 5 8 CTS CTS 8 5 5 8 CTS DCD 1 8 8 1 DCD DCD 1 8 8 1 DCD DSR 6 6 6 6 DSR DSR 6 6 6 6 DSR DTR 4 20 20 4 DTR DTR 4 20 20 4 DTR DTE – DTE null modem cable Minimal null modem cable S2, 2008 COMP9032 Week10 27 S2, 2008 COMP9032 Week10 28 RS-232-C Interface RS-423 Standard • Also a single ended system.
Recommended publications
  • A Guide to Networking Terminology. INSTITUTION National Bureau of Standards (DOC), Washington, D.C
    DOCUMENT RESUME ED 092 160 IR 000 721 AUTHOR Neumann, A. J. TITLE A Guide to Networking Terminology. INSTITUTION National Bureau of Standards (DOC), Washington, D.C. SPONS AGENCY National Science Foundation, Washington, D.C. REPORT NO NBS-TN-803 PUB DATE Mar 74 NOTE 33p. AVAILABLE FROM Superintendent of Documents, U.S. Government Printing Office, Washington, D.C. 20402 (SD Cat. No. 013.46:803, $0.80) EDRS PRICE MF-$0.75 HC-$1.85 PLUS POSTAGE DESCRIPTORS Computers; *Computer Science; Definitions; *Glossaries; *Information Networks; Information Processing; Information Systems; *Telecommunication; *Vocabulary IDENTIFIERS *Computer Networks ABSTRACT A selected set of terms and definitions relating to computer networking is presented in a coherent manner. An introduction gives the rationale for the glossary, defies the scope by a brief tutorial overview, and states the glossary format and conventions. The glossary is arranged alphabetically and contains about 140-definitions and associated terms. The sources ofmany terms are cited and modifiers indicate the status of definitions. A complete listing of source material is appended. (Author) NBS TECHNICAL NOTE803 I. I I D U.S. DEPARTMENT OF COMMERCE National Bureau of Standards NATIONAL BUREAU OF STANDARDS Hie National limean of Standards' was established by an act of Congress March 3. 1901. 1111.. lillfl:111.111\ i1.111p,4.1111 to strengthen and ikh.ince the Nation's science and technology facilitate their ellective iipplication for public heneln To this end, the Bureau conducts research and provides. (It a h;isis (or the Nations physical measurement system, 12) scientific and technological services for industry and government, {It a technical basis for equity in trade.
    [Show full text]
  • The RS232 Standard
    The RS232 Standard Information being transferred between Interfaces Selecting a Cable data processing equipment and In addition to communications between The major consideration in choosing an peripherals is in the form of digital data computer equipment over telephone RS232 cable is, what devices are to be which is transmitted in either a serial lines, RS232 is now widely used for connected? First, are you connecting or parallel mode. Parallel direct connections between data two DTE devices (null modem cable) or communications are used mainly for acquisition devices and computer a DTE device to a DCE device (modem connections between test instruments systems. As in the definition of RS232, cable)? Second, what connectors are or computers and printers, while serial the computer is data transmission required on each end, male or female, is often used between computers and equipment (DTE). However, many 25-pin or 9-pin (AT style)? Usually, it is other peripherals. Serial transmission interface products are not data recommended that the user obtain the involves the sending of data one bit at a communications equipment (DCE). Null two devices to be connected, and then time, over a single communications line. modem cables are designed for this determine which cable is required. In contrast, parallel communications situation; rather than having the pin- to- require at least as many lines as there pin connections of modem cables, null RS232 Specifications are bits in a word being transmitted (for modem cables have different internal TRANSMITTED SIGNAL an 8-bit word, a minimum of 8 lines are wiring to allow DTE devices to VOLTAGE LEVELS: Z needed).
    [Show full text]
  • Wide-Area Networking Basics
    Chapter 1: Wide-Area Networking Basics Exam Objectives ✓ Defining wide-area networking ✓ Explaining WAN connection types ✓ Describing WAN protocol encapsulation methods ✓ Introducing Cisco router cabling standards ✓ Identifying AUX and COM port connectors ✓ Understanding popular DSL technologies ✓ Recognizing the differences between DCE and DTE devices Introducing WANs wide-area network (WAN) is a connection between two or more A local-area networks (LANs) spanning across a large, spread-out geographical area. A single LAN is usually considered to be confined to the same building or office that does not communicate over public transportation methods. A metropolitan-area network (MAN) limits its communications to a specific city function or campus area, while a WAN uses dedicated leased lines from telephone companies to establish links between geographically dispersed LANs and/or MANs. WAN technologies are generally represented by the three lower layers of the OSI model, namely, the network, data link, and physical layers. The Internet is the best example of a WAN and is the largest public network COPYRIGHTEDon the planet. As you can see in MATERIAL Figure 1-1, private WANs are used to establish permanent communications links between company sites and branch offices. Using routers, traffic is managed and sent to the proper destination LAN. The traffic is then transferred to LAN switching devices until the data reaches the intended recipient. Private WANs may use a number of methods to connect to remote sites, such as dedicated telephone lines, ATM, Frame Relay, and satellite links. Private WANs may also use public networks to communicate. Setting up an encrypted VPN over a local ISP’s DSL service or dialup connection is another cost-friendly alternative for secure communications.
    [Show full text]
  • Or RS-232 Modem Equipment to RS-422 Terminal Equipment (DCE to DTE) for Bidirectional Data Transfer
    FREE 24-hour Tech Support: 724-746-5500 blackbox.com © 2010. All rights reserved. Black Box Corporation. RS-232↔RS-422 Interface Converters Connect RS-422 modem equipment to RS-232 terminal equipment (DCE to DTE) or RS-232 modem equipment to RS-422 terminal equipment (DCE to DTE) for bidirectional data transfer. 04/12/2010 #16892 ­­1 of 3 Connect your RS-232 equipment to your RS-422/449 equipment via the converter. FEATUres » Use your RS-232 equipment with RS-422/449 DIP shunt settings: RS-449 equipment. DCE DTE » Provides bidirectional sync or async conversion Diagram Format of all commonly used RS-232 and RS-422 signals. Straight cable Rule Size: 0.018 Modem or other RS-422 Device » Choose from two user-selectable configurations. DCE device RS-232↔422 » User-selectable DCE or DTE configuration. 22 (T+) R+ Interface Converter » Speed up to 64 kbps. (IC456A-R5) 4 (T-) R- » Perfect for industrial applications. 24 (R+) T+ 6 (R-) T- OVERVIEW The RS-232´RS-422 Interface Converter provides bidirectional You might want to order the Interface Converter Rack (RM060), synchronous or asynchronous conversion of all commonly used which is a 19-inch rack that can hold up to eight printed circuit cards. RS-232 and RS-422 signals. It is designed to operate with one port The rack has its own power supply that is switch-selectable between configured as Data Terminal Equipment (DTE) and the other port as 115 and 230 VAC. (For 48 VDC, use RM062A). Data Communications Equipment (DCE). The converter has seven LEDs located on the front panel that The converter has two user-selectable configurations: one for indicate the status of the input signals.
    [Show full text]
  • User Manual RST425 Iridium SBD Modem
    RST425 Short Burst Data Modem Installation & User Manual Beam Communications Pty Ltd RST425 INSTALLATION & USER MANUAL RST425 Installation and User Manual Beam Communications Pty Ltd 8 Anzed Court, Mulgrave, Victoria, 3170, AUSTRALIA Information furnished by Beam Communications Pty Ltd (Beam) is believed to be accurate and reliable. However, no responsibility is assumed by Beam for its use, or for any infringement of patents or other rights of third parties, which may result from its use. No license is granted by implication or otherwise under any patent or patent rights of Beam. Beam reserves the right to change specifications at any time without notice. Copyright © 2008 Beam Communications Pty Ltd. All rights reserved Product name: RST425 Installation & User Manual Manual revision: 02 Part Number USRMAN003702 Issue Date: July 2008 2 RST425 INSTALLATION & USER MANUAL Content SAFETY INFORMATION................................... 4 RS232 PORT ELECTRICAL PARAMETERS....... 12 DATA CONNECTIVITY ....................................... 13 ABOUT BEAM COMMUNICATIONS .............. 5 CONFIGURATION SETTINGS .............................. 13 WHAT IS THE RST425? ................................... 6 Modes of Operation ..................................... 13 SERIAL PORT SIGNAL LEVELS............................ 14 PACKAGE CONTENTS......................................... 6 Data Port Inputs .......................................... 14 OPTIONAL BEAM ACCESSORIES ........................ 6 Data Port Outputs........................................ 14
    [Show full text]
  • Z/OS Communications Server Glossary
    z/OS Communications Server Glossary Version2Release1 Glossary This glossary provides terms and definitions for the z/OS Communications Server software and products. For other terms and definitions, see the IBM Terminology website. Numerics 31-bit storage addressing An addressing structure introduced with the MVS/XA operating system that supports addressing up to 2 GB of real and virtual memory, in addition to the prior support for 24-bit addressing. The architecture has since been extended with 64-bit addressing. 3270 data stream The commands, control codes, orders, attributes, and data or structured fields for 3270 devices, that are transmitted inbound to an application program or outbound to a terminal. A AAL See ATM adaptation layer. AARP See AppleTalk Address Resolution Protocol. abend See abnormal end of task. abend dump A dump that is produced when a program ends abnormally. ABM 1. See activity based management. 2. See asynchronous balanced mode. abnormal end of task (abend) The termination of a task, job, or subsystem because of an error condition that recovery facilities cannot resolve during execution. abnormal termination A system failure or operator action that causes a job to end unsuccessfully. ABR See area border router. abstract syntax A data specification that includes all distinctions that are needed in data transmissions, but that omits (abstracts) other details such as those that depend on specific computer architectures. See also Abstract Syntax Notation One, Basic Encoding Rules. Abstract Syntax Notation One (ASN.1) 1. The international standard for defining the syntax of information data. It defines a number of simple data types and specifies a notation for referencing these types and for specifying values of these types.
    [Show full text]
  • POWER OVER ETHERNET (POE) on the Same Conductors As Data
    Benefits of PoE include increased mobility for end devices, added safety (no AC power involved), simplicity of installation, reliability, security and cost savings. Alternative A implements a simplex, or ‘phantom feeding’ method for delivering power to the end device. Power is carried POWER OVER ETHERNET (POE) on the same conductors as data. CAT-5 cabling for standard 10BaseT and 100Base-TX Ethernet uses two data/signal pairs connected to pins 1 and 2 and pins 3 and 6 on RJ-45 connectors. With the introduction of new Ethernet-enabled devices expanding Power sourcing equipment superimposes power onto these pins geometrically, the need to power these devices from standard AC via the center tap of internal signal coupling transformers. In the power outlets has become a limiting factor. IP telephones, powered device (PD) the power is derived from these lines using wireless access points, IP cameras and device servers are the reverse technique. examples of devices limited by the need to have an AC power outlet nearby to plug in a DC power adapter. At best, power supply installation and wiring adds labor and results in the mess of extra wiring; worst case, the lack of nearby AC power means devices cannot be installed where they are needed. In response to this need, IEEE developed IEEE802.3af to standardize a system of supplying low voltage power to networked devices via the communications line. Released in mid- 2003, the standard was entitled, Data Terminal Equipment (DTE) Power via Media Dependant Interface (MDI). It is more commonly referred to as Power over Ethernet (POE).
    [Show full text]
  • A Guide to Networking Terminology
    TO *** 'Cq REFERENCE \V TECHNICAL J NBS NOTE 803 h/ %TES O* too .sea 1174 U.S. ARTMENT OF OMMERCE National Bureau of Standards NATIONAL BUREAU OF STANDARDS The National Bureau of Standards' was established by an act of Congress March 3, 1901. The Bureau's overall goal is to strengthen and advance the Nation's science and technology and facilitate their effective application for public benefit. To this end, the Bureau conducts research and provides: (1) a basis for the Nation's physical measurement system, (2) scientific and technological services for industry and government, (3) a technical basis for equity in trade, and (4) technical services to promote public safety. The Bureau consists of the Institute for Basic Standards, the Institute for Materials Research, the Institute for Applied Technology, the Institute for Computer Sciences and Technology, and the Office for Information Programs. THE INSTITUTE FOR BASIC STANDARDS provides the central basis within the United States of a complete and consistent system of physical measurement; coordinates that system with measurement systems of other nations; and furnishes essential services leading to accurate and uniform physical measurements throughout the Nation's scientific community, industry, and commerce. The Institute consists of a Center for Radiation Research, an Office of Meas- urement Services and the following divisions: Applied Mathematics — Electricity — Mechanics — Heat — Optical Physics — Nuclear 2 8 Sciences — Applied Radiation ~ — Quantum Electronics " — Electromagnetics — Time s and Frequency — Laboratory Astrophysics " — Cryogenics ". THE INSTITUTE FOR MATERIALS RESEARCH conducts materials research leading to improved methods of measurement, standards, and data on the properties of well-characterized materials needed by industry, commerce, educational institutions, and Government; provides advisory and research services to other Government agencies; and develops, produces, and distributes standard reference materials.
    [Show full text]
  • Using the Mini-Exchange MSTM DOS Version 2.11 Operating System
    ~D~DD~D AA-OY84A-XV Using the Mini-Exchange MSTM_DOS Version 2.11 Operating System digital equipment corporation First Printing, October 1984 © Digital Equipment Corporation 1984. All Rights Reserved. The information in this document is subject to change without notice and should not be construed as a commitment by Digital Equipment Corporation. Digital Equipment Corporation assumes no responsibility for any errors that may appear in this document. The software described in this document is furnished under a license and may only be used or copied in accordance with the terms of such license. No responsibility is assumed for the use or reliability of software on equipment that is not supplied by DIGITAL or its affiliated companies. MS'"-DOS is a trademark of Microsoft Corporation. SELECT is a trademark of Select Information Systems, Inc. WordStar is a registered trademark of MicroPro International Corp. The following are trademarks of Digital Equipment Corporation: ~D~DDmD'M DEC GIG I RSX DECmate MASSBUS UNIBUS DECsystem-10 PDP VAX DECSYSTEM-20 P/OS VMS DECUS Professional VT DECwriter Rainbow Work Processor DIBOL RSTS The postage-prepaid READER'S COMMENTS form on the last page of this document requests the user's critical evaluation to assist us in preparing future documentation. Printed in U.S.A. Contents Preface v Intended Reader v Guide Organization vi Conventions Used vi Chapter 1. Introducing the Mini-Exchange 1-1 Chapter 2. Connecting Devices to the Mini-Exchange 2-1 Connecting Rainbow Computers to the Mini-Exchange 2-2 Connecting Printers to the Mini-Exchange 2-3 Connecting a Modem to the Mini-Exchange 2-3 What Cables to Use 2-4 iii Contents Chapter 3.
    [Show full text]
  • Cable Information and Specifications for Cisco 1900 Series Routers
    CHAPTER 3 Cable Information and Specifications for Cisco 1900 Series Routers This document gives cable information and specifications for the console port, auxiliary port, and network ports on your Cisco 1900 series integrated services router. • Console and Auxiliary Port Considerations, page 3-1 • Preparing to Connect to a Network, page 3-3 Console and Auxiliary Port Considerations • About Console and Auxiliary Ports, page 3-1 • Console Port Connections, page 3-1 • Auxiliary Port Connections, page 3-3 About Console and Auxiliary Ports The router includes USB, asynchronous serial and auxiliary ports. The console and auxiliary ports provide access to the router either locally using a console terminal connected to the console port, or remotely, using a modem connected to the auxiliary port. This section provides important cabling information to consider before connecting the router to a console terminal or modem. The main difference between the console and auxiliary ports is that the auxiliary port supports flow control, whereas the console port does not. Flow control paces the transmission of data between a sending device and a receiving device. Flow control ensures that the receiving device can absorb the data sent to it before the sending device sends more. When the buffers on the receiving device are full, a message is sent to the sending device to suspend transmission until the data in the buffers has been processed. Because the auxiliary port supports flow control, it is ideally suited for use with the high-speed transmissions of a modem. Console terminals send data at slower speeds than modems; therefore, the console port is ideally suited for use with console terminals.
    [Show full text]
  • Ansi Eiaitia-530-A
    DATA PRO Data Networking 2747 1 Standards ANSI EIAITIA-530-A In this report: Datapro Summary Mechanical ANSI EWTIA-530-A (hereafter EIA-530-A) defines the mechanical interface characteris­ Characteristics .................... 2 tics between Data Termination Equipment (DTE) and Data Circuit-Terminating Equipment (DCE). It operates in conjunction with RS-422-A and RS-423-A, which define the electrical Functional Description of operation of the individual interchange circuits for balanced and unbalanced operation, re­ Interchange Circuits ............ 2 spectively. EIA-530-A complements RS-232-D for data rates above 20K bps and replaces RS-449 for data rates above 20K bps. Electrical Characteristics ..... 7 EIA-530-A Interchange Circuit Details ................................. 9 A revision of EIA-530, EIA-530-A was ap­ ElA-530-A governs the mechanical and elec­ Note: The content of this proved in May 1992 and includes several rela­ trical characteristics of the interface between report has been reviewed tively minor modifications to the previous stan­ Data Tenninal Equipment (DTE) and Data Cir­ and revalidated. It is be­ dard. The most significant change accounts for cuit-Tenninating Equipment (DCE). The stan­ ing published with a new the alternative 26-position interface connector dard defines DTE as the hardware on the busi­ date to indicate that the (Alt A). Other revisions comprise the following: ness machine side of the interface (teleprinters, infonnation is current. • Addition of Circuits CJ (Ready for Receiv­ display tenninals, front-end processors, central ing), CE (Ring Indicator), and AC (Signal processing units, etc.), and DCE as the modem, Common). signal converter, or other device between the DTE and the communications line.
    [Show full text]
  • Computer Network Interconnection; T,Oo-4 Problems—And Prospects
    ICE & TECHNOLOGY: COMPUTER NETWORK IIMTERCONNECTIOIM PROBLEMS AND PROSPECTS NBS Special Publication 500-6 U.S. DEPARTMENT OF COMMERCE National Bureau of Standards NATIONAL BUREAU OF STANDARDS The National Bureau of Standards^ was established by an act of Congress March 3, 1901. The Bureau's overall goal is to strengthen and advance the Nation's science and technology and facilitate their effective application for public benefit. To this end, the Bureau conducts research and provides: (1) a basis for the Nation's physical measurement system, (2) scientific and technological services for industry and government, (3) a technical basis for equity in trade, and (4) technical services to pro- mote public safety. The Bureau consists of the Institute for Basic Standards, the Institute for Materials Research, the Institute for Applied Technology, the Institute for Computer Sciences and Technology, the Office for Information Programs, and the Office of Experimental Technology Incentives Program. THE INSTITUTE FOR BASIC STANDARDS provides the central basis within the United States of a complete and consist- ent system of physical measurement; coordinates that system with measurement systems of other nations; and furnishes essen- tial services leading to accurate and uniform physical measurements throughout the Nation's scientific community, industry, and commerce. The Institute consists the Office of Measurement Services, and the following center and divisions: Applied Mathematics — Electricity — Mechanics — Heat — Optical Physics — Center for Radiation Research — Lab- oratory Astrophysics* — Cryogenics' — Electromagnetics'' — Time and Frequency". THE INSTITUTE FOR MATERIALS RESEARCH conducts materials research leading to improved methods of measure- ment, standards, and data on the properties of well-characterized materials needed by industry, commerce, educational insti- tutions, and Government; provides advisory and research services to other Government agencies; and develops, produces, and distributes standard reference materials.
    [Show full text]