PERIPHERAL INTERFACING Rev. 1.0

Size: px
Start display at page:

Download "PERIPHERAL INTERFACING Rev. 1.0"

Transcription

1 PERIPHERAL INTERFACING Rev.. This work is licensed under the Creative Commons Attribution-NonCommercial-Share Alike 2.5 India License. To view a copy of this license, visit or send a letter to Creative Commons, 7 Second Street, Suite 3, San Francisco, California, 945, USA. Part #

2 PERIPHERAL INTERFACING Rev.. COMMUNICATION BETWEEN TWO MICROPROCESSORS OBJECTIVE To establish communication between the two 885 Microprocessor by writing an assembly language program to transmitter and receiver APPARATUS REQUIRED Single board microcomputer (VI Microsystems 85). RS 232 Connector. Flat Ribbon Cable. DESCRIPTION When data are transmitted as voltage, the commonly used standard is known as RS 232C. It is defined in reference to data terminal equipment (DTE) and data communication equipment (DCE) terminal and modern. Its voltage levels are not compatible with TTL logic levels. The rate of data transmission in RS 232C, is restricted to a maximum of 2k baud and a distance of 5ft, for high speed data transmission, new standards RS - 422A and RS - 423A developed in recent years. The RS 232C is a 25 pin connector and its signals are divided in to four groups signals, control signals, timing signals and ground. The minimum interface between a computer and a peripheral requires three lines 2, 3, and 7. These lines are defined in relation to the DTE, the terminal transmits on pin2, and receiver other hand, the DCE transmits on pin3, receiver on pin2. The transmit and receive lines cross, hence it is known as NULL MODEM CONNECTION. ALGORITHM Transmitter Receiver Initialize the timer and USART of the transmitter. Set the starting address of data to be transmitted and the number of bytes to be transmitted. Program the USART for serial data transmission. Stop the execution. Intialize the timer and USART of receiving data. Set the starting address of data received. Program the USART for serial data reception. Receive the data from RS-232 pin and stop the execution. Part #2

3 PERIPHERAL INTERFACING Rev.. NULL MODEM CONNECTION NC T X D R X D NC T X D R X D CTS RTS RTS CTS NC GND NC GND RS 232 DETAILS - 25 PIN PIN SIGNALS Protective ground 2 Transmitted data (TXD) -> DCE 3 Received data (RXD) -> DTE 4 Request to send (RST)->DCE 5 Clear to send (CTS) -> DTE 6 Data set ready (DSR) -> DTE 7 Signal ground 8 Received line signal detector 9, Reserved for data set testing Unassigned 2 Secondary Clear to send 3 Secondary Recorded line signal detector 4 Secondary Transmitted data 5 Transmission signal element timing ( DCE source) 6 Secondary Received data 7 Receiver signal element timing ( DCE source) 8 Unassigned 9 Secondary request to send 2 DCE <- data terminal ready (DTR) 2 Signal quality detector 22 ring indicator Part #3

4 PERIPHERAL INTERFACING Rev.. 23 data signal rate selector (DTE/DCE source) 24 Transmit signal element timing 25 Unassigned COMMAND INSTRUCTION FORMAT OF 825A DATA BIT DESCRIPTION D TXEN TRANSMIT ENABLE ENABLE ; DISABLE D DTR DATA TERMINAL READY HIGH WILL FORCE DTR OUTPUT TO D 2 RXE RECEIVE ENABLE ENABLE ; DISABLE D 3 SBRK SEND BREAK CHARACTER = FORCE TXD LOW = NORMAL OPERATION D 4 ER ERROR RESET = RESET ERROR FLAGS OF, PE, OE, FE D 5 RTS REQUEST TO SEND HIGH WILL FORCE RTS OUPUT TO D 6 IR INTERNAL RESET HIGH RETURNS 825A TO MODE INSTRUCTION FORMAT D 7 EH ENTER HUNT MODE ENABLE A SEARCH FOR SYNCRONOUS CHARACTER ( HAS NO EFFECT IN ASYNCRONOUS MODE ) STATUS WORD FORMAT 825A DATA BIT DESCRIPTION D TXRDY TRANSMITTER READY TXRDY status bit has different meanings from the TXRDY output pin. The former is not conditioned by CTS & TXEN (i.e) TXRDY status bit = DB buffer empty TXRDY pin out = DB buffer empty. (CTS ) (TXEN ). D RXRDY RECEIVER READY This bit indicates that the 825A contains a character that is ready to be input to the CPU D 2 TXEMPTY TRANSMITTER EMPTY When the 825A has no character to transmit this bit will go high D 3 PE PARITY ERROR The PE flag is set when a parity error is detected. It is reset by the ER bit of the command instruction. PE does not inhibit operation of the 825A D 4 OE OVERFLOW ERROR The OE flag is set when the CPU does not read a character before the next one becomes available. OE is reset by the ER bit of the command instruction. OE does not inhibit the operation of 825A however the previously overrun character is lost. D 5 FE FRAMING ERROR(Asynchronous mode only) The FE flag is set when a valid stop bit is not detected at end of every character. It is reset by the ER BIT of the command instruction. FE does not inhibit the operation of 825A. D 6 SYNDET SYNC DETECT This pin is used in synchronous mode for syndet and is used in asynchronous mode for break detect. D 7 DSR DATA SET READY Indicates that the DSR is at zero level. Part #4

5 PERIPHERAL INTERFACING Rev.. ASYNCRONOUS MODE OF 825A DATA BIT D B D B2 D 2 L D 3 L2 D 4 PEN D 5 EP D 6 S D 7 S2 DESCRIPTION Baud rate Factor B2 B Syncronous mode X 6X 64X Character Length L2 L 5 bits 6 bits 7 bits 8 bits Parity Enable ENABLE DISABLE Even parity Generation Check ODD EVEN No of Stop bit S2 S Invalid bit.5 bits 2 bits CONTORL WORD FORMAT 8253 DATA BIT DESCRIPTION D BCD D M D 2 M D 3 M2 D 4 RL D 5 RL D 6 SC D 7 SC BINARY/BCD MODE M2 M M MODE READ/LOAD RL RL Latch LSB MSB LSB/MSB SELECT COUNTER SC SC CH# 2 X Part #5

6 PERIPHERAL INTERFACING Rev.. ASSEMBLY LANGUAGE PROGRAM Transmitter ADDRESS LABEL MNEMONICS OPCODE/OPERAND COMMENT 4 MVI A,36 H 3E 36 Initialization of OUT TMRCNT D3 B 44 MVI A,A H 3E A 46 OUT TMRCHO D XRA A AF 49 OUT TMRCHO D3 8 4B XRA A AF Resetting the 4C OUT UATCNT D A 4E MVI A,4 H 3E 4 4 OUT UATCNT D MVI A,4E H 3E 4E Initialization of 44 OUT UATCNT D A 46 MVI A,37 H 3E OUT UATCNT D3 5 4A LXI H,43 H 2 43 Load the input data in to transmitter memory 4D MVI C,5 H E 5 Initialize the number of input data count 4F LOOP IN UATCNT DB 5 Check 825A 42 ANI 4 H E6 4 TXEMPTY and 423 JZ LOOP CA F 4 then send the data 426 MOV A,M 7E Move the recent input data to accumulator 427 INX H 23 Increment the memory location to get the next data in to transmitter 428 OUT UATDAT D3 4 Transmit the data to receiver 42A DCR C D Decrement the input data count 42B JNZ LOOP C2 F 4 Until all data are transmitted continue looping 42E HLT 76 Stop the execution Receiver 42 MVI A,36 H 3E 36 Initialisation of OUT TMRCNT D3 B 424 MVI A,A H 3E A 426 OUT TMRCHO D XRA A AF 42A OUT TMRCHO D3 8 42B XRA A AF Resetting the 42C OUT UATCNT D A 42E MVI A,4 H 3E 4 42 OUT UATCNT D MVI A,4E H 3E 4E Initialization of 424 OUT UATCNT D A Part #6

7 PERIPHERAL INTERFACING Rev MVI A,37 H 3E OUT UATCNT D3 5 42A LXI H,44 H 2 44 Load the output data in to receiver memory 42D MVI C,5 H E 5 Initialize the number of input data count 42F LOOP IN UATCNT DB 5 Check 825A 422 ANI 2 H E6 2 RXEMPTY and 4223 JZ LOOP CA F 42 hence get the data and store the data 4226 IN UATDAT H DB 4 Receive the data from transmitter 4228 MOV M,A 77 Move the recent input data to accumulator 4229 DCR C D Decrement the receiver data count 422A INX H 23 Increment the memory location to store the transmitted data 422B JNZ LOOP C2 F 42 Until all data are received continue looping 422E HLT 76 Stop the execution EXECUTION Transmitter ADDRESS 43 H 43 H 432 H 433 H 434 H Receiver ADDRESS 44 H 44 H 442 H 443 H 444 H DATA AA H BB H CC H DD H EE H DATA AA H BB H CC H DD H EE H REFERENCE. Ramesh S.Gaonkar, Microprocessor Architecture, Programming, and Applications, Fourth Edition, Penram International Publishing (India), 2. Part #7

8 PERIPHERAL INTERFACING Rev.. 2. S.Subathra, Advanced Microprocessor Laboratory, Record work, Adhiparashakthi Engineering College, Melmaruvathur, October S.Subathra, Programming in 885 Microprocessor and its applications An Innovative Analysis, Technical Report, Adhiparashakthi Engineering College, Melmaruvathur, March Micro-85 EB, User Manual, Version 3., CAT #M85 EB-2, VI Microsystems Pvt. Ltd., Chennai. Part #8

PERIPHERAL INTERFACING Rev. 1.0

PERIPHERAL INTERFACING Rev. 1.0 This work is licensed under the Creative Commons Attribution-NonCommercial-Share Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/2.5/in/deed.en

More information

Semiconductor MSM82C51A-2RS/GS/JS UNIVERSAL SYNCHRONOUS ASYNCHRONOUS RECEIVER TRANSMITTER

Semiconductor MSM82C51A-2RS/GS/JS UNIVERSAL SYNCHRONOUS ASYNCHRONOUS RECEIVER TRANSMITTER E2O007-27-X2 Semiconductor MSM82C5A-2RS/GS/JS Semiconductor MSM82C5A-2RS/GS/JS This version: Jan. 998 Previous version: Aug. 996 UNIVERSAL SYNCHRONOUS ASYNCHRONOUS RECEIVER TRANSMITTER GENERAL DESCRIPTION

More information

Serial Input/Output. Lecturer: Sri Parameswaran Notes by: Annie Guo

Serial Input/Output. Lecturer: Sri Parameswaran Notes by: Annie Guo Serial Input/Output Lecturer: Sri Parameswaran Notes by: Annie Guo 1 Serial communication Concepts Standards USART in AVR Lecture overview 2 Why Serial I/O? Problems with Parallel I/O: Needs a wire for

More information

Electronics / Water analogy. Resistor. Inductance. Capacitor. Water Electronics Energy - Energy Pressure - Voltage Flow - Current Volume - Charge

Electronics / Water analogy. Resistor. Inductance. Capacitor. Water Electronics Energy - Energy Pressure - Voltage Flow - Current Volume - Charge Electronics / Water analogy Water Electronics Energy - Energy Pressure - Voltage Flow - Current Volume - Charge Resistor U = R * I 1 Capacitor U 1 i dt C U L di dt Inductance Turbine Flywheel Diode Transistor

More information

ECE 4510/5530 Microcontroller Applications Week 6 Lab 5

ECE 4510/5530 Microcontroller Applications Week 6 Lab 5 Microcontroller Applications Week 6 Lab 5 Dr. Bradley J. Bazuin Associate Professor Department of Electrical and Computer Engineering College of Engineering and Applied Sciences Lab 5 Element Hardware

More information

Programmable communications interface (PCI)

Programmable communications interface (PCI) Programmable communicatio interface (PCI) DESCRIPTION The Philips Semiconductors PCI is a universal synchronous/asynchronous data communicatio controller chip designed for microcomputer systems. It interfaces

More information

SC16C750B. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V UART with 64-byte FIFOs

SC16C750B. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V UART with 64-byte FIFOs Rev. 05 17 October 2008 Product data sheet 1. General description 2. Features The is a Universal Asynchronous Receiver and Transmitter (UART) used for serial data communications. Its principal function

More information

SC16C550B. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V UART with 16-byte FIFOs

SC16C550B. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V UART with 16-byte FIFOs Rev. 05 1 October 2008 Product data sheet 1. General description 2. Features The is a Universal Asynchronous Receiver and Transmitter (UART) used for serial data communications. Its principal function

More information

EIA-232 Information. DTE Signal Direction. DCE Signal Direction. Signal EIA

EIA-232 Information. DTE Signal Direction. DCE Signal Direction. Signal EIA EIA EIA-232 Information This is one of the most misunderstood areas of RS-232. DTE stands for Data Terminal Equipment, and DCE stands for Data Circuit-terminating Equipment or Data Communications Equipment.

More information

SC16C650B. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V UART with 32-byte FIFOs and infrared (IrDA) encoder/decoder

SC16C650B. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V UART with 32-byte FIFOs and infrared (IrDA) encoder/decoder 5 V, 3.3 V and 2.5 V UART with 32-byte FIFOs and infrared (IrDA) encoder/decoder Rev. 04 14 September 2009 Product data sheet 1. General description 2. Features The is a Universal Asynchronous Receiver

More information

Chapter 9: Serial Communication Interface SCI. The HCS12 Microcontroller. Han-Way Huang. September 2009

Chapter 9: Serial Communication Interface SCI. The HCS12 Microcontroller. Han-Way Huang. September 2009 Chapter 9: Serial Communication Interface SCI The HCS12 Microcontroller Han-Way Huang Minnesota State t University, it Mankato September 2009 H. Huang Transparency No.9-1 Why Serial Communication? Parallel

More information

Description PKG. NO. TRC NC EPE GND CLS1 RRD CLS2 RBR8 SBS RBR7 PI RBR6 CRL RBR5 TBR8 RBR4 TBR7 RBR3 TBR6 RBR2 TBR5 RBR1 TBR4 PE TBR3 FE TBR2 OE

Description PKG. NO. TRC NC EPE GND CLS1 RRD CLS2 RBR8 SBS RBR7 PI RBR6 CRL RBR5 TBR8 RBR4 TBR7 RBR3 TBR6 RBR2 TBR5 RBR1 TBR4 PE TBR3 FE TBR2 OE March 1997 Features SEMICONDUCTOR Low Power CMOS Circuitry.......... 7.5mW (Typ) at 3.2MHz (Max Freq.) at V DD = 5V Baud Rate - DC to 200K Bits/s (Max) at.............. 5V, 85 o C - DC to 400K Bits/s (Max)

More information

APPLICATION NOTE ANI6. Connecting the SP504 Multiprotocol Transceiver to the 85C30 Universal Enhanced Serial Communications Controller (ESCC)

APPLICATION NOTE ANI6. Connecting the SP504 Multiprotocol Transceiver to the 85C30 Universal Enhanced Serial Communications Controller (ESCC) Solved by APPLICATION NOTE ANI6 TM Connecting the SP504 Multiprotocol Transceiver to the 85C30 Universal Enhanced Serial Communications Controller (ESCC) INTRODUCTION The Sipex SP504 is a cost-effective,

More information

DigiPoints Volume 1. Student Workbook. Module 2 Modem Overview

DigiPoints Volume 1. Student Workbook. Module 2 Modem Overview Modem Overview Page 2.1 DigiPoints Volume 1 Module 2 Modem Overview Summary One of the potential advantages the cable telecommunications industry has is the ability to carry data signals at speeds significantly

More information

SC16C Description. 2. Features. Dual UART with 32 bytes of transmit and receive FIFOs

SC16C Description. 2. Features. Dual UART with 32 bytes of transmit and receive FIFOs Rev. 04 20 June 2003 Product data 1. Description The is a 2 channel Universal Asynchronous Receiver and Transmitter (UART) used for serial data communications. Its principal function is to convert parallel

More information

Concept of Serial Communication

Concept of Serial Communication Concept of Serial Communication Agenda Serial v.s. Parallel Simplex, Half Duplex, Full Duplex Communication RS-485 Advantage over RS-232 Serial v.s. Parallel Application: How to Measure the temperature

More information

Description TRC NC EPE GND CLS1 RRD CLS2 RBR8 SBS RBR7 PI RBR6 CRL RBR5 TBR8 RBR4 TBR7 RBR3 TBR6 RBR2 TBR5 RBR1 TBR4 PE TBR3 FE TBR2 OE TBR1 SFD

Description TRC NC EPE GND CLS1 RRD CLS2 RBR8 SBS RBR7 PI RBR6 CRL RBR5 TBR8 RBR4 TBR7 RBR3 TBR6 RBR2 TBR5 RBR1 TBR4 PE TBR3 FE TBR2 OE TBR1 SFD March 1997 CMOS Universal Asynchronous Receiver Transmitter (UART) Features 8.0MHz Operating Frequency (HD-6402B) 2.0MHz Operating Frequency (HD-6402R) Low Power CMOS Design Programmable Word Length, Stop

More information

SC16C550 Rev June 2003 Product data General description Features

SC16C550 Rev June 2003 Product data General description Features Universal Asynchronous Receiver/Transmitter (UART) with 16-byte FIFO and infrared (IrDA) encoder/decoder Rev. 05 19 June 2003 Product data 1. General description 2. Features The is a Universal Asynchronous

More information

SC16C652B. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V dual UART, 5 Mbit/s (max.) with 32-byte FIFOs and infrared (IrDA) encoder/decoder

SC16C652B. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V dual UART, 5 Mbit/s (max.) with 32-byte FIFOs and infrared (IrDA) encoder/decoder 5 V, 3.3 V and 2.5 V dual UART, 5 M/s (max.) with 32-byte FIFOs and infrared (IrDA) encoder/decoder Rev. 04 1 September 2005 Product data sheet 1. General description 2. Features The is a 2 channel Universal

More information

ST16C550. UART WITH 16-BYTE FIFO s GENERAL DESCRIPTION. PLCC Package FEATURES ORDERING INFORMATION

ST16C550. UART WITH 16-BYTE FIFO s GENERAL DESCRIPTION. PLCC Package FEATURES ORDERING INFORMATION UART WITH 16-BYTE FIFO s GENERAL DESCRIPTION The ST16C550 is a universal asynchronous receiver and transmitter with 16 byte transmit and receive FIFO. A programmable baud rate generator is provided to

More information

APPLICATION BULLETIN. SERIAL BACKGROUNDER (Serial 101) AB23-1. ICS ICS ELECTRONICS division of Systems West Inc. INTRODUCTION CHAPTER 2 - DATA FORMAT

APPLICATION BULLETIN. SERIAL BACKGROUNDER (Serial 101) AB23-1. ICS ICS ELECTRONICS division of Systems West Inc. INTRODUCTION CHAPTER 2 - DATA FORMAT ICS ICS ELECTRONICS division of Systems West Inc. AB- APPLICATION BULLETIN SERIAL BACKGROUNDER (Serial 0) INTRODUCTION Serial data communication is the most common means of transmitting data from one point

More information

HD Features. CMOS Universal Asynchronous Receiver Transmitter (UART) Ordering Information. Pinout

HD Features. CMOS Universal Asynchronous Receiver Transmitter (UART) Ordering Information. Pinout Data Sheet October 3, 2005 FN2956.3 CMOS Universal Asynchronous Receiver Transmitter (UART) The is a CMOS UART for interfacing computers or microprocessors to an asynchronous serial data channel. The receiver

More information

Interface converter G kbit/sec

Interface converter G kbit/sec converter User s Guide 12345678901234567890123456789012123456789012345678901234567890121234567890123456789012345678901212345678901 Interface converter G.703.1 64 kbit/sec Features Maximum line attenuation

More information

INTERFACING ADC/DAC. DAC INTERFACE SECTION: DAC 0800 is a monolithic, high speed, current output D/A Converter. Its unique features are:

INTERFACING ADC/DAC. DAC INTERFACE SECTION: DAC 0800 is a monolithic, high speed, current output D/A Converter. Its unique features are: INTERFACING ADC/DAC AIM: a) To interface the DAC unit to microprocessor and to write an ALP to convert the given digital word to analog voltage and also to generate sawtooth, triangular and sinewaves.

More information

Fanuc Serial (RS232) Communications Information

Fanuc Serial (RS232) Communications Information Memex Automation Inc. 777 Walkers Line, Burlington, Ontario Canada L7N 2G1 Fanuc Serial (RS232) Communications Information Contents Signal Description Fanuc Serial Cable Information Timing Chart When The

More information

RCLK N.C. CS0 CS1 -CS2 -BAUDOUT

RCLK N.C. CS0 CS1 -CS2 -BAUDOUT UART WITH 16-BYTE FIFO s September 2003 GENERAL DESCRIPTION The ST16C550 (550) is a universal asynchronous receiver and transmitter with 16 byte transmit and receive FIFO. It operates at 2.97 to 5.5 volts.

More information

HR1200. Version 1.00 ATIM RADIOCOMMUNICATION 1/11

HR1200. Version 1.00 ATIM RADIOCOMMUNICATION 1/11 HR1200 Version 1.00 ATIM RADIOCOMMUNICATION 1/11 Contact Information ATIM RADIOCOMMUNICATION Les guillets 38250 Villard de Lans France Tel : +33 (0)4 76 95 50 65 Fax: +33 (0)4 76 95 50 64 Web : www.atim.com

More information

arxiv:physics/ v1 [physics.ed-ph] 19 Oct 2004

arxiv:physics/ v1 [physics.ed-ph] 19 Oct 2004 I. SIMPLE 8085 µp COMPATIBLE I/O CARD with Arti Dwivedi Abstract A simple interfacing project with the 8085-microprocessor kits available in under graduate college labs has been discussed. The interface

More information

SC16C554B/554DB. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V quad UART, 5 Mbit/s (max.) with 16-byte FIFOs

SC16C554B/554DB. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V quad UART, 5 Mbit/s (max.) with 16-byte FIFOs 5 V, 3.3 V and 2.5 V quad UART, 5 Mbit/s (max.) with 16-byte FIFOs Rev. 03 1 September 2005 Product data sheet 1. General description 2. Features The is a 4-channel Universal Asynchronous Receiver and

More information

a6850 Features General Description Asynchronous Communications Interface Adapter

a6850 Features General Description Asynchronous Communications Interface Adapter a6850 Asynchronous Communications Interface Adapter September 1996, ver. 1 Data Sheet Features a6850 MegaCore function implementing an asychronous communications interface adapter (ACIA) Optimized for

More information

CL4790 HARDWARE INTEGRATION GUIDE VERSION 3.0. Americas: Europe: Hong Kong:

CL4790 HARDWARE INTEGRATION GUIDE VERSION 3.0. Americas: Europe: Hong Kong: CL4790 HARDWARE INTEGRATION GUIDE VERSION 3.0 Americas: +1-800-492-2320 FCC Notice WARNING: This device complies with Part 15 of the FCC Rules. Operation is subject to the following two conditions: (1)

More information

Microcontrollers. Serial Communication Interface. EECE 218 Microcontrollers 1

Microcontrollers. Serial Communication Interface. EECE 218 Microcontrollers 1 EECE 218 Microcontrollers Serial Communication Interface EECE 218 Microcontrollers 1 Serial Communications Principle: transfer a word one bit at a time Methods:» Simplex: [S] [R]» Duplex: [D1] [D2]» Half

More information

FEATURES PLCC Package RXB RXA -TXRDYB TXA TXB -OPB -CSA -CSB

FEATURES PLCC Package RXB RXA -TXRDYB TXA TXB -OPB -CSA -CSB DUAL UART WITH 16-BYTE TRANSMIT AND RECEIVE FIFO S DESCRIPTION The ST16C2550 (2550) is a dual universal asynchronous receiver and transmitter (UART). The ST16C2550 is an improved version of the NS16C550

More information

ST16C450 UNIVERSAL ASYNCHRONOUS RECEIVER/TRANSMITTER (UART) GENERAL DESCRIPTION. PLCC Package FEATURES ORDERING INFORMATION.

ST16C450 UNIVERSAL ASYNCHRONOUS RECEIVER/TRANSMITTER (UART) GENERAL DESCRIPTION. PLCC Package FEATURES ORDERING INFORMATION. UNIVERSAL ASYNCHRONOUS RECEIVER/TRANSMITTER (UART) September 2003 GENERAL DESCRIPTION The ST16C450 is a universal asynchronous receiver and transmitter. The ST16C450 is an improved version of the NS16450

More information

C Mono Camera Module with UART Interface. User Manual

C Mono Camera Module with UART Interface. User Manual C328-7221 Mono Camera Module with UART Interface User Manual Release Note: 1. 16 Mar, 2009 official released v1.0 C328-7221 Mono Camera Module 1 V1.0 General Description The C328-7221 is VGA camera module

More information

Cable and Port Specifications

Cable and Port Specifications APPENDIX D This appendix includes the following information: Cables and Adapters Provided, page D-1 Console Port, page D-2 COM1 Port, page D-3 MGMT 10/100 Ethernet Port, page D-5 SFP Transceiver Specifications,

More information

SC16C2552B. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V dual UART, 5 Mbit/s (max.), with 16-byte FIFOs

SC16C2552B. 1. General description. 2. Features. 5 V, 3.3 V and 2.5 V dual UART, 5 Mbit/s (max.), with 16-byte FIFOs 5 V, 3.3 V and 2.5 V dual UART, 5 M/s (max.), with 16-byte FIFOs Rev. 03 12 February 2009 Product data sheet 1. General description 2. Features The is a two channel Universal Asynchronous Receiver and

More information

V62/03626 REVISIONS LTR DESCRIPTION DATE APPROVED REV PAGE REV PAGE REV REV STATUS OF PAGES PAGE

V62/03626 REVISIONS LTR DESCRIPTION DATE APPROVED REV PAGE REV PAGE REV REV STATUS OF PAGES PAGE REVISIONS LTR DESCRIPTION DTE PPROVED Prepared in accordance with SME Y14.24 Vendor item drawing REV PGE REV PGE 18 19 20 REV STTUS OF PGES REV PGE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 PMIC N/ Original

More information

WWVB Receiver/Decoder With Serial BCD or ASCII Interface DESCRIPTION FEATURES APPLICATIONS

WWVB Receiver/Decoder With Serial BCD or ASCII Interface DESCRIPTION FEATURES APPLICATIONS Linking computers to the real world WWVB Receiver/Decoder With Serial BCD or ASCII Interface DESCRIPTION General The Model 321BS provides computer readable time and date information based on the United

More information

A50/A51/A60. June 2008 (4th Edition) All Rights Reserved

A50/A51/A60. June 2008 (4th Edition) All Rights Reserved A50/A51/A60 June 2008 (4th Edition) All Rights Reserved Part I - A50/A51 RS-232 to RS-422/RS-485 Converter A50/A51 RS-232 to RS-422/RS-485 Bidirectional Converter Part II - A60 RS-232 Surge Protection

More information

NETWORK. TE = Terminal Equipment (DTE - Data Terminal Equipment) NT = Network - Terminating Equipment (DCE - Data Circuit - Terminating Equipment)

NETWORK. TE = Terminal Equipment (DTE - Data Terminal Equipment) NT = Network - Terminating Equipment (DCE - Data Circuit - Terminating Equipment) NETWORK INTERFACING TE NT NETWORK NT TE Interface Interface TE = Terminal Equipment (DTE - Data Terminal Equipment) NT = Network - Terminating Equipment (DCE - Data Circuit - Terminating Equipment) Interface

More information

PC16552D Dual Universal Asynchronous Receiver Transmitter with FIFOs

PC16552D Dual Universal Asynchronous Receiver Transmitter with FIFOs PC16552D Dual Universal Asynchronous Receiver Transmitter with FIFOs General Description The PC16552D is a dual version of the PC16550D Universal Asynchronous Receiver Transmitter (UART) The two serial

More information

ANALOG AND DIGITAL PHYSICAL INTERFACES

ANALOG AND DIGITAL PHYSICAL INTERFACES ANALOG AND DIGITAL PHYSICAL INTERFACES Habib Youssef, Ph.D youssef@ccse.kfupm.edu.sa Department of Computer Engineering King Fahd University of Petroleum and Minerals Dhahran, Saudi Arabia COMPUTER NETWORK

More information

USER'S MANUAL. Model : K

USER'S MANUAL. Model : K USER'S MANUAL Model : 2000-64K TM GINA MODEL 2000-64K Overview GINA Model 2000-64K is a stand-alone, high frequency data transceiver using spread spectrum technology. GINA 2000-64K capabilities include

More information

TL16C550A ASYNCHRONOUS COMMUNICATIONS ELEMENT

TL16C550A ASYNCHRONOUS COMMUNICATIONS ELEMENT Capable of Running With All Existing TL16C450 Software After Reset, All s Are Identical to the TL16C450 Set In the FIFO Mode, Transmitter and Receiver Are Each Buffered With 16-Byte FIFOs to Reduce the

More information

TL16C554A, TL16C554AI ASYNCHRONOUS-COMMUNICATIONS ELEMENT

TL16C554A, TL16C554AI ASYNCHRONOUS-COMMUNICATIONS ELEMENT Integrated Asynchronous-Communications Element Consists of Four Improved TL16C550C ACEs Plus Steering Logic In FIFO Mode, Each ACE Transmitter and Receiver Is Buffered With 16-Byte FIFO to Reduce the Number

More information

TL16C552A, TL16C552AM DUAL ASYNCHRONOUS COMMUNICATIONS ELEMENT WITH FIFO

TL16C552A, TL16C552AM DUAL ASYNCHRONOUS COMMUNICATIONS ELEMENT WITH FIFO IBM PC/AT Compatible Two TL16C550 ACEs Enhanced Bidirectional Printer Port 16-Byte FIFOs Reduce CPU Interrupts Up to 16-MHz Clock Rate for up to 1-Mbaud Operation Transmit, Receive, Line Status, and Data

More information

PRODUCT INFORMATION B&B ELECTRONICS. Port-Powered RS-232 Fiber Optic Modem with Handshake Support. Model 9PFLST. Description. RS-232 Connections

PRODUCT INFORMATION B&B ELECTRONICS. Port-Powered RS-232 Fiber Optic Modem with Handshake Support. Model 9PFLST. Description. RS-232 Connections -01-1/ 00 by B&B Electronics. All rights reserved. Model Port-Powered RS- Fiber Optic Modem with Handshake Support Description The allows any two pieces of RS- asynchronous serial equipment to communicate

More information

M7 Over-The-Air Protocol. Overview. Technical Brief AN187 Rev A1

M7 Over-The-Air Protocol. Overview. Technical Brief AN187 Rev A1 Technical Brief AN187 Rev A1 M7 Over-The-Air Protocol By John Sonnenberg Raveon Technologies Corp Overview The M7 GX series of GPS transponders may be directly connected to a Garmin GPS 152H navigation

More information

PCL-836 Multifunction countertimer and digital I/O add-on card for PC/XT/ AT and compatibles

PCL-836 Multifunction countertimer and digital I/O add-on card for PC/XT/ AT and compatibles PCL-836 Multifunction countertimer and digital I/O add-on card for PC/XT/ AT and compatibles Copyright This documentation is copyrighted 1997 by Advantech Co., Ltd. All rights are reserved. Advantech Co.,

More information

Asynchronous Serial Communications The MC9S12 Serial Communications Interface (SCI) Asynchronous Data Transfer

Asynchronous Serial Communications The MC9S12 Serial Communications Interface (SCI) Asynchronous Data Transfer Asynchronous Serial Communications The MC9S12 Serial Communications Interface (SCI) Asynchronous Data Transfer In asynchronous data transfer, there is no clock line between the two devices Both devices

More information

March 30, W65C51N Asynchronous Communications Interface Adapter (ACIA)

March 30, W65C51N Asynchronous Communications Interface Adapter (ACIA) March 30, 2010 W65C51N Asynchronous Communications Interface Adapter (ACIA) WDC reserves the right to make changes at any time without notice in order to improve design and supply the best possible product.

More information

HC08 SCI Operation with Various Input Clocks INTRODUCTION

HC08 SCI Operation with Various Input Clocks INTRODUCTION Order this document by /D HC08 SCI Operation with Various Input Clocks By Rick Cramer CSIC MCU Product Engineering Austin, Texas INTRODUCTION This application note describes the operation of the serial

More information

9600 bps, Dual Modem 170 Card Private Wire Only

9600 bps, Dual Modem 170 Card Private Wire Only 896 9600 bps, Dual Modem 170 Card Private Wire Only Users Guide 280 Interstate 80 West Exit 1 / PO Box 1330, Verdi, NV 89439 Phone: 775-345-8000 Fax: 775-345-8010 E-mail: traffic@sgdi.net TABLE OF CONTENTS

More information

D16550 IP Core. Configurable UART with FIFO v. 2.25

D16550 IP Core. Configurable UART with FIFO v. 2.25 2017 D16550 IP Core Configurable UART with FIFO v. 2.25 C O M P A N Y O V E R V I E W Digital Core Design is a leading IP Core provider and a SystemonChip design house. The company was founded in 1999

More information

HD66702 (LCD-II/E20) (Dot Matrix Liquid Crystal Display Controller/Driver) Description. Features

HD66702 (LCD-II/E20) (Dot Matrix Liquid Crystal Display Controller/Driver) Description. Features HD6672 (LCD-II/E2) (Dot Matrix Liquid Crystal Display Controller/Driver) Description The HD6672 LCD-II/E2 dot-matrix liquid crystal display controller and driver LSI displays alphanumerics, Japanese kana

More information

TL16C550A ASYNCHRONOUS COMMUNICATIONS ELEMENT

TL16C550A ASYNCHRONOUS COMMUNICATIONS ELEMENT Capable of Running With All Existing TL16C450 Software After Reset, All Registers Are Identical to the TL16C450 Register Set In the FIFO Mode, Transmitter and Receiver Are Each Buffered With 16-Byte FIFOs

More information

Am85C30. Advanced Micro Devices. Enhanced Serial Communications Controller DISTINCTIVE CHARACTERISTICS GENERAL DESCRIPTION FINAL

Am85C30. Advanced Micro Devices. Enhanced Serial Communications Controller DISTINCTIVE CHARACTERISTICS GENERAL DESCRIPTION FINAL FINAL Am85C3 Enhanced Serial Communications Controller Advanced Micro Devices DISTINCTIVE CHARACTERISTICS Fastest data rate of any Am853 8.92 MHz / 2.48 Mb/s MHz / 2.5 Mb/s 6.384 MHz / 4.96 Mb/s Low-power

More information

8253 functions ( General overview )

8253 functions ( General overview ) What are these? The Intel 8253 and 8254 are Programmable Interval Timers (PITs), which perform timing and counting functions. They are found in all IBM PC compatibles. 82C54 which is a superset of the

More information

Modem E1. Modem-converter E1-L. Features. Contents

Modem E1. Modem-converter E1-L. Features. Contents Modem-converter E1-L User s Guide 1234567890123456789012345678901212345678901234567890123456789012123456789012345678901234567890121234567 Modem E1 Features E1 G703/G704 channel Distance up to 1.5 km V.35/RS-530/RS-449/RS-232/X.21/

More information

6551 ASYNCHRONOUS COMMUNICATION INTERFACE ADAPTER

6551 ASYNCHRONOUS COMMUNICATION INTERFACE ADAPTER commodore semiconductor group MOS TECHNOLOGY, INC. 950 Rittenhouse Rd., Norristown, PA 19403 Tel.: 215/666-7950 - TLX 846-100 MOSTECHGY VAFG 6551 ASYNCHRONOUS COMMUNICATION INTERFACE ADAPTER CONCEPT: %

More information

Lecture #3 RS232 & 485 protocols

Lecture #3 RS232 & 485 protocols SPRING 2015 Integrated Technical Education Cluster At AlAmeeria E-626-A Data Communication and Industrial Networks (DC-IN) Lecture #3 RS232 & 485 protocols Instructor: Dr. Ahmad El-Banna 1 Agenda What

More information

Unit D. Serial Interfaces. Serial vs. Parallel. Serial Interfaces. Serial Communications

Unit D. Serial Interfaces. Serial vs. Parallel. Serial Interfaces. Serial Communications D.1 Serial Interfaces D.2 Unit D Embedded systems often use a serial interface to communicate with other devices. Serial implies that it sends or receives one bit at a time. Serial Communications Serial

More information

Universal Converter Covers All the Bases- RS-232 to 4-wire RS-422, 2-wire or 4-wire RS-485

Universal Converter Covers All the Bases- RS-232 to 4-wire RS-422, 2-wire or 4-wire RS-485 4WSD9R0712-1/4 Model 4WSD9R Universal Converter Covers All the Bases- RS-232 to 4-wire RS-422, 2-wire or 4-wire RS-485 The 4WSD9R Universal Converter is a port-powered or externally powered two-channel

More information

ASYNCHRONOUS COMMUNICATIONS ELEMENT

ASYNCHRONOUS COMMUNICATIONS ELEMENT 查询 供应商 捷多邦, 专业 PCB 打样工厂,24 小时加急出货 Programmable Baud Rate Generator Allows Division of Any Input Reference Clock by 1 to (2 16 1) and Generates an Internal 16 Clock Full Double Buffering Eliminates the

More information

TCSS 372 Laboratory Project 2 RS 232 Serial I/O Interface

TCSS 372 Laboratory Project 2 RS 232 Serial I/O Interface 11/20/06 TCSS 372 Laboratory Project 2 RS 232 Serial I/O Interface BACKGROUND In the early 1960s, a standards committee, known as the Electronic Industries Association (EIA), developed a common serial

More information

Instruction Sheet UPS SERIES. Serial Control Protocol. I Rev E

Instruction Sheet UPS SERIES. Serial Control Protocol. I Rev E Instruction Sheet UPS SERIES Serial Control Protocol I-00341 Rev E (THIS PAGE INTENTIONALLY LEFT BLANK) Page 1 TABLE OF CONTENTS 1 Protocol Overview...3 1.1 Signal characteristics...3 1.2 Primary DB9 Pin

More information

PART 4 DIGITAL METHODS. Chapter 13 Digital Fundamentals. Parallel Data Transfer. Fig Parallel data handshaking

PART 4 DIGITAL METHODS. Chapter 13 Digital Fundamentals. Parallel Data Transfer. Fig Parallel data handshaking PART 4 DIGITAL METHODS Chapter 13 Digital Fundamentals The remainder of this book will deal with digital methods in modern communications. We will build on the introduction to digital data in Chapter 3,

More information

Ultrasonic Multiplexer OPMUX v12.0

Ultrasonic Multiplexer OPMUX v12.0 Przedsiębiorstwo Badawczo-Produkcyjne OPTEL Sp. z o.o. ul. Morelowskiego 30 PL-52-429 Wrocław tel.: +48 (071) 329 68 54 fax.: +48 (071) 329 68 52 e-mail: optel@optel.pl www.optel.eu Ultrasonic Multiplexer

More information

Function Block DIGITAL PLL. Within +/- 5ppm / 10 years (Internal TCXO Stability) 1 External Reference Frequency Range: 10MHz +/- 100Hz

Function Block DIGITAL PLL. Within +/- 5ppm / 10 years (Internal TCXO Stability) 1 External Reference Frequency Range: 10MHz +/- 100Hz Features * Best Suited for Local Oscillator of Microwave Equipment with Low Phase Noise and Low Spurious Emission * Programmable Selection by Rotary Switch or Serial Control Signal * Built-in PLL Circuit

More information

TS4000 Radio Modem. User s Manual

TS4000 Radio Modem. User s Manual TS4000 Radio Modem User s Manual Version 6.60C 1729 South Main Street Milpitas, CA 95035 (408) 941-1808 (800) 663-3674 (408) 941-1818 Fax www.teledesignsystems.com productsales@teledesignsystems.com techsupport@teledesignsystems.com

More information

Modem 1200 baud 500FSD10 EDS500 series - FSK modems

Modem 1200 baud 500FSD10 EDS500 series - FSK modems Manual Modem 1200 baud 500FSD10 EDS500 series - FSK modems Application, characteristics and technical data have to be taken from the hardware data sheet: 500FSD10 Data sheet 1KGT150982 Operation The 500FSD10

More information

For Direct computer control see the Data Out connector description. For Radio control see the Data In connector description.

For Direct computer control see the Data Out connector description. For Radio control see the Data In connector description. Transceiver interface Operation for Steppir For Direct computer control see the Data Out connector description. For Radio control see the Data In connector description. The following radios are supported:

More information

Select datum Page backward in. parameter list

Select datum Page backward in. parameter list HEIDENHAIN Working with the measured value display unit ND Actual value and input display (7-segment LED, 9 decades and sign) Select datum Page backward in parameter list Confirm entry value Set display

More information

XR16V554/554D 2.25V TO 3.6V QUAD UART WITH 16-BYTE FIFO

XR16V554/554D 2.25V TO 3.6V QUAD UART WITH 16-BYTE FIFO JULY 2010 REV. 1.0.3 GENERAL DESCRIPTION The XR16V554 (V554) is a quad Universal Asynchronous Receiver and Transmitter (UART) with 16 bytes of transmit and receive FIFOs, selectable receive FIFO trigger

More information

SC28L General description. 3.3 V, 5 V UART, Mbit/s, with 256-byte FIFO

SC28L General description. 3.3 V, 5 V UART, Mbit/s, with 256-byte FIFO Rev. 01 31 October 2005 Product data sheet 1. General description The is a high performance UART. Its functional and programming features closely match but greatly extend those of previous Philips UARTs.

More information

ST16C554/554D 2.97V TO 5.5V QUAD UART WITH 16-BYTE FIFO

ST16C554/554D 2.97V TO 5.5V QUAD UART WITH 16-BYTE FIFO 2.97V TO 5.5V QUAD UART WITH 16-BYTE FIFO JUNE 2006 REV. 4.0.1 GENERAL DESCRIPTION The ST16C554/554D (554) is a quad Universal Asynchronous Receiver and Transmitter (UART) with 16 bytes of transmit and

More information

D16950 IP Core. Configurable UART with FIFO v. 1.03

D16950 IP Core. Configurable UART with FIFO v. 1.03 2017 D16950 IP Core Configurable UART with FIFO v. 1.03 C O M P A N Y O V E R V I E W Digital Core Design is a leading IP Core provider and a SystemonChip design house. The company was founded in 1999

More information

+3.3V-Powered, EIA/TIA-562 Dual Transceiver with Receivers Active in Shutdown

+3.3V-Powered, EIA/TIA-562 Dual Transceiver with Receivers Active in Shutdown 19-0198; Rev 0; 10/9 +.Powered, EIA/TIA-5 Dual Transceiver General Description The is a +.powered EIA/TIA-5 transceiver with two transmitters and two receivers. Because it implements the EIA/TIA-5 standard,

More information

This section of the manual will document the Ad-Maestro s control ports, COMM Ports and their settings respectively.

This section of the manual will document the Ad-Maestro s control ports, COMM Ports and their settings respectively. This section of the manual will document the Ad-Maestro s control ports, COMM Ports and their settings respectively. Parallel - The Parallel port provides a control interface with video devices utilizing

More information

SC16C General description. 2. Features and benefits

SC16C General description. 2. Features and benefits 2.5 V to 3.3 V UART, 5 Mbit/s (max.) with 128-byte FIFOs, infrared (IrDA), and 16 mode or 68 mode parallel bus interface Rev. 2 11 November 2010 Product data sheet 1. General description The is a 2.5 V

More information

63W7 Camera serial communication I/F specification

63W7 Camera serial communication I/F specification 63W7 Camera serial communication I/F specification 1. Brief 2. Serial communication I/F 2-1 Controller and Camera connection 2-2 Communication Flow 2-3 Communication Data Format 3. Write Command 3-1 CAMERA

More information

+5V Multiprotocol, Software-Selectable Cable Terminator

+5V Multiprotocol, Software-Selectable Cable Terminator 19-1775; Rev 0; 2/01 +5V Multiprotocol, Software-Selectable General Description The contains six software-selectable, multiprotocol cable termination networks. Each network is capable of terminating V.11

More information

RS-232 Data Acquisition Module 232SPDA and 232SPDACL Document No. 232SPDA3798

RS-232 Data Acquisition Module 232SPDA and 232SPDACL Document No. 232SPDA3798 RS-232 Data Acquisition Module 232SPDA and 232SPDACL Document No. 232SPDA3798 This product Designed and Manufactured In Ottawa, Illinois USA of domestic and imported parts by B&B Electronics Mfg. Co. Inc.

More information

SMARTALPHA RF TRANSCEIVER

SMARTALPHA RF TRANSCEIVER SMARTALPHA RF TRANSCEIVER Intelligent RF Modem Module RF Data Rates to 19200bps Up to 300 metres Range Programmable to 433, 868, or 915MHz Selectable Narrowband RF Channels Crystal Controlled RF Design

More information

This document is designed to be used in conjunction with the CMX869A data sheet.

This document is designed to be used in conjunction with the CMX869A data sheet. CML Microcircuits COMMUICATIO SEMICODUCTORS Publication: A/Telecom/869A/1 May 2006 Application ote Bell 212A Implementation with CMX869A 1 Introduction The Bell 212A data communications protocol, originally

More information

Confirm entry value Set display to value from Actual value and input display Select datum P79 (P80!) (7-segment LED,

Confirm entry value Set display to value from Actual value and input display Select datum P79 (P80!) (7-segment LED, HEIDENHAIN Working with the measured value display unit ND 261 Confirm entry value Set display to value from Actual value and input display Select datum P79 (P80!) (7-segment LED, Page backward in 9 decades

More information

SC16IS General description. 2. Features

SC16IS General description. 2. Features Single UART with I 2 C-bus/SPI interface, 64 bytes of transmit and receive FIFOs, IrDA SIR built-in support Rev. 01 29 April 2010 Product data sheet 1. General description The is a slave I 2 C-bus/SPI

More information

MSP430 Teaching Materials

MSP430 Teaching Materials MSP430 Teaching Materials Lecture 11 Communications Introduction & USI Module Texas Instruments Incorporated University of Beira Interior (PT) Pedro Dinis Gaspar, António Espírito Santo, Bruno Ribeiro,

More information

Topics Introduction to Microprocessors

Topics Introduction to Microprocessors Topics 2244 Introduction to Microprocessors Chapter 8253 Programmable Interval Timer/Counter Suree Pumrin,, Ph.D. Interfacing with 886/888 Programming Mode 2244 Introduction to Microprocessors 2 8253/54

More information

SLLS177H MARCH 1994 REVISED JANUARY 2006

SLLS177H MARCH 1994 REVISED JANUARY 2006 Programmable Auto-RTS and Auto-CTS In Auto-CTS Mode, CTS Controls Transmitter In Auto-RTS Mode, RCV FIFO Contents and Threshold Control RTS Serial and Modem Control Outputs Drive a RJ11 Cable Directly

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

SRT PAGING & DATA RECEIVER MANUAL

SRT PAGING & DATA RECEIVER MANUAL SRT PAGING & DATA RECEIVER MANUAL Covering the following: SRT150R, SRT280R, SRT320R, SRT450R & SRT950R CONTENTS 1.0 INTRODUCTION 1.1 APPLICATIONS 1.2 SPECIFICATION 1.3 RS232 SERIAL PORT 1.4 PROGRAMMING

More information

E205 Long Range Wireless Modem V1.0 Data Sheet

E205 Long Range Wireless Modem V1.0 Data Sheet E205 Long Range Wireless Modem V1.0 Data Sheet The Long Range Wireless Modem E205 is a radio transmitter / receiver designed for transparent wireless data transmission over long distances. It operates

More information

Manual IF2008A IF2008E

Manual IF2008A IF2008E Manual IF2008A IF2008E PCI Basis Board Expansion Board Table of Content 1 Technical Data... 4 1.1 IF2008A Basic Printed Circuit Board... 4 1.2 IF2008E Expansion Board... 5 2 Hardware... 6 2.1 View IF2008A...

More information

WWVB Receiver/Decoder Module With Serial BCD Interface DESCRIPTION FEATURES APPLICATIONS

WWVB Receiver/Decoder Module With Serial BCD Interface DESCRIPTION FEATURES APPLICATIONS Linking computers to the real world WWVB Receiver/Decoder Module With Serial BCD Interface DESCRIPTION General The Model 321BS provides computer readable time and date information based on the United States

More information

CL4490 HARDWARE INTEGRATION GUIDE VERSION 1.0. FCC Notice.

CL4490 HARDWARE INTEGRATION GUIDE VERSION 1.0. FCC Notice. CL4490 HARDWARE INTEGRATION GUIDE VERSION 1.0 wireless.support@lairdtech.com FCC Notice WARNING: This device complies with Part 15 of the FCC Rules. Operation is subject to the following two conditions:

More information

XR18W750 WIRELESS UART CONTROLLER

XR18W750 WIRELESS UART CONTROLLER XR8W75 WIRELESS UART CONTROLLER MARCH 28 REV... GENERAL DESCRIPTION The XR8W75 is a Wireless UART Controller with a two-wire I 2 C interface to the XR8W753 RF transceiver to complete Exar s Wireless UART

More information

Voltage regulator TAPCON 240

Voltage regulator TAPCON 240 Voltage regulator TAPCON 240 Supplement 2398402/00 Protocol description for IEC 60870-5-103 All rights reserved by Maschinenfabrik Reinhausen Copying and distribution of this document and utilization and

More information

RF1212 RF1212 Ultra-low Power ISM Transceiver Module V2.0

RF1212 RF1212 Ultra-low Power ISM Transceiver Module V2.0 RF1212 Ultra-low Power ISM Transceiver Module V2.0 Application: Features: Home automation Security alarm Telemetry Automatic meter reading Contactless access Wireless data logger Remote motor control Wireless

More information