FT232BM /FT245BM BIT BANG MODE
|
|
|
- Brice Garrison
- 9 years ago
- Views:
Transcription
1 Definition FT232BM /FT245BM BIT BANG MODE The FT232BM and FT245BM chips can be set up in a special mode where the normal function of the chips are replaced. This mode changes the 8 data lines on the FT245BM or the RS232 data and control lines of the FT232BM to an 8 bit bi-directional bus. The purpose of this mode was intended to be used to program FPGA devices. It may also be used to talk to serial EEPPROMs or load a data latch. Pin Definitions FT245BM FT232BM Bit-Bang Data bit Data0 TXD Data0 Data1 RXD Data1 Data2 RTS Data2 Data3 CTS Data3 Data4 DTR Data4 Data5 DSR Data5 Data6 DCD Data6 Data7 RI Data7 Mode of Operation Any data written to the device in the normal manner will be self clocked onto the data pins (for the pins that have been programmed as outputs). Each pin can be set as an input or an output independant of the other pins. The rate of clocking out the data is controlled by the baud rate generator. This exists in both the FT245BM as well as the FT232BM. For the data to change, there has to be new data written and the baud clock has to tick. If you do not write any new data to the device then the pins will hold the last value written. The commands of interest are : 1) FT_SetBaudRate(ftHandle : Dword ; BaudRate : Dword) : FT_Result; This controls the rate of transferring bytes that have been written to the device onto the pins. It also sets the sampling of the pins and transferring the result back to the Read path of the chip. The maximum baud rate is 3 MegaBaud. The clock for the Bit Bang mode is actually 16 times the baudrate. A value of 9600 baud would transfer the data at (9600 x 16) = bytes per second or 1 every 6.5 us. 2) FT_SetBitMode (fthandle : Dword ; ucmask, ucenable : Byte) : FT_Result; This sets up which bits are input and which are output. The ucmask byte sets the direction. A 1 means the corresponding bit is to be an output. A 0 means the corresponding bit is to be an input. When read data is passed back to the PC, the current pin state for both inputs and outputs will used. The ucenable byte will turn the bit bang mode off and on. Setting bit 0 to 1 turns it on. Clearing bit 0 to 0 turns it off. 3) FT_GetBitMode ( fthandle : Dword ; pucdata : pointer ) : FT_Result; This function does an immediate read of the 8 pins and passes back the value. This is useful to see what the pins are doing now. The normal Read pipe will contain the same result but it has also been sampling the pins continuously (up until its buffers become full). Therefor the data in the Read pipe will be old.
2 Example : Programing an Altera FLEX10K FPGA This example interfaces to an Altera FLEX10K FPGA. A cable was made up in the following manner : Bit Bang bit Mode ALTERA Pin 0 OUT CLK 1 OUT nconfig 2 OUT DATA0 3 IN nstatus 4 IN CONF_DONE 5 IN not used 6 IN not used 7 IN not used This code was written in Delphi Pascal. function CheckStatus : boolean; // // returns true unless there is an error. // // This is reading the nstatus line from the FPGA // var res : FT_Result; NStat : byte; i,j : integer; CheckStatus := True; res := Get_USB_Device_BitMode(NStat); NStat := NStat AND $08; if NStat = 0 then CheckStatus := False; procedure SendBitByte2(ByteToSnd : byte; Offset : integer); // // This takes a byte to send serialy to the FPGA and converts // it into 16 bytes to be transmitted down USB. Each bit of the // byte is put onto data bit 2 of the device and clocked using data // bit 0. // var SendingByte : byte; // bit 0 if (ByteToSnd AND $01) <> 0 then SendingByte := SendingByte + $04; FT_Out_Buffer[Offset + 0]:= SendingByte;
3 FT_Out_Buffer[Offset + 1]:= SendingByte + $01; // clock high // bit 1 if (ByteToSnd AND $02) <> 0 then SendingByte := SendingByte + $04; FT_Out_Buffer[Offset + 2]:= SendingByte; FT_Out_Buffer[Offset + 3]:= SendingByte + $01; // clock high // bit 2 if (ByteToSnd AND $04) <> 0 then SendingByte := SendingByte + $04; FT_Out_Buffer[Offset + 4]:= SendingByte; FT_Out_Buffer[Offset + 5]:= SendingByte + $01; // clock high // bit 3 if (ByteToSnd AND $08) <> 0 then SendingByte := SendingByte + $04; FT_Out_Buffer[Offset + 6]:= SendingByte; FT_Out_Buffer[Offset + 7]:= SendingByte + $01; // clock high // bit 4 if (ByteToSnd AND $10) <> 0 then SendingByte := SendingByte + $04; FT_Out_Buffer[Offset + 8]:= SendingByte; FT_Out_Buffer[Offset + 9]:= SendingByte + $01; // clock high // bit 5 if (ByteToSnd AND $20) <> 0 then SendingByte := SendingByte + $04; FT_Out_Buffer[Offset + 10]:= SendingByte; FT_Out_Buffer[Offset + 11]:= SendingByte + $01; // clock high // bit 6 if (ByteToSnd AND $40) <> 0 then SendingByte := SendingByte + $04; FT_Out_Buffer[Offset + 12]:= SendingByte; FT_Out_Buffer[Offset + 13]:= SendingByte + $01; // clock high // bit 7 if (ByteToSnd AND $80) <> 0 then SendingByte := SendingByte + $04; FT_Out_Buffer[Offset + 14]:= SendingByte; FT_Out_Buffer[Offset + 15]:= SendingByte + $01; // clock high procedure SendBitByte(ByteToSnd : byte; SendNow : Boolean ); // // This routine calls the routine to serialise the byte and // then decides if it should send the packet down to USB. It does // this to maximise band width on the USB bus. // var SendingByte : byte; SendBitByte2(ByteToSnd,Offset); OffSet := OffSet + 16; if (SendNow OR (OffSet = 4096)) then Application Note AN232BM-01
4 SendBytes(OffSet); OffSet := 0; procedure CompleteProg; // // Clock the FPGA 10 times to complete its programming // var SendingByte : byte; FT_Out_Buffer[0]:= SendingByte; FT_Out_Buffer[1]:= SendingByte OR $03; // clock high FT_Out_Buffer[2]:= SendingByte; FT_Out_Buffer[3]:= SendingByte OR $03; // clock high FT_Out_Buffer[4]:= SendingByte; FT_Out_Buffer[5]:= SendingByte OR $03; // clock high FT_Out_Buffer[6]:= SendingByte; FT_Out_Buffer[7]:= SendingByte OR $03; // clock high FT_Out_Buffer[8]:= SendingByte; FT_Out_Buffer[9]:= SendingByte OR $03; // clock high FT_Out_Buffer[10]:= SendingByte; FT_Out_Buffer[11]:= SendingByte OR $03; // clock high FT_Out_Buffer[12]:= SendingByte; FT_Out_Buffer[13]:= SendingByte OR $03; // clock high FT_Out_Buffer[14]:= SendingByte; FT_Out_Buffer[15]:= SendingByte OR $03; // clock high FT_Out_Buffer[16]:= SendingByte; FT_Out_Buffer[17]:= SendingByte OR $03; // clock high FT_Out_Buffer[18]:= SendingByte; FT_Out_Buffer[19]:= SendingByte OR $03; // clock high SendBytes(20); function CheckDone : boolean; // // Returns false unless it is finished.
5 // // This checks the CONF_DONE line from the FPGA. // var res : FT_Result; NStat : byte; CheckDone := False; res := Get_USB_Device_BitMode(NStat); NStat := NStat AND $10; if NStat <> 0 then CheckDone := True; function StartConfig : boolean; // // returns true if confdone is low after pulsing nconfig // // It sets up a pulse on nconfig by keeping the nconfig line // low over several bytes. // var started : boolean; FT_Out_Buffer[0]:= $02; FT_Out_Buffer[1]:= $00; // pulse config FT_Out_Buffer[2]:= $00; // pulse config FT_Out_Buffer[3]:= $00; // pulse config FT_Out_Buffer[4]:= $00; // pulse config FT_Out_Buffer[5]:= $00; // pulse config FT_Out_Buffer[6]:= $00; // pulse config FT_Out_Buffer[7]:= $00; // pulse config FT_Out_Buffer[8]:= $00; // pulse config FT_Out_Buffer[9]:= $00; // pulse config FT_Out_Buffer[10]:= $00; // pulse config FT_Out_Buffer[11]:= $00; // pulse config FT_Out_Buffer[12]:= $00; // pulse config FT_Out_Buffer[13]:= $00; // pulse config FT_Out_Buffer[14]:= $02; SendBytes(15); started := CheckDone; if started then StartConfig := False else StartConfig := True; procedure ProgramFPGA; // // This is the main entry point for programming the device. // It sets up the device and opens the file to use. It then // reads the file and sends the data to the FPGA checking for // errors on the way. // var RBFFile : file;
6 ibytesread,byteswritten : integer; PageData : Array[0..511] of Byte; i : integer; Complete,Passed,ImmSend : Boolean; res : FT_Result; // Bit Mode On OpenComPort; SetupComPort; res := Set_USB_Device_BitMode($07,$01); AssignFile(RBFFile, form1.edit2.text); // Open input file Reset(RBFFile,1); // Record size = 1 Complete := false; OffSet := 0; res := Reset_USB_Device; FT_Current_Baud := 57600; // = 16 * = 1.08 us period res := Set_USB_Device_BaudRate; BytesWritten := 0; DisplayClr; if not( EOF(RBFFile)) then Complete := StartConfig; // start sequence - will return success if Complete then Complete := False else Complete := True; repeat BlockRead(RBFFile, PageData, 256, ibytesread); if (ibytesread > 0) then for i := 0 to (ibytesread - 1) do // for i := 0 to ibytesread do ImmSend := False; if (i = (ibytesread - 1)) then if ibytesread < 256 then ImmSend := True else ImmSend := False; SendBitByte(PageData[i],ImmSend); BytesWritten := BytesWritten + 1; Complete := CheckDone; Passed := CheckStatus; until (ibytesread = 0) OR Complete OR NOT Passed; if (ibytesread = 0) then if complete then
7 CompleteProg; // for last 10 clocks DisplayMsg( Programming Passed ); end else if NOT Passed then DisplayMsg( Programming Failed - nstatus ); DisplayMsg( Bytes Written = + inttostr(byteswritten)); end else DisplayMsg( Programming Failed - ran out of file ); DisplayMsg( Bytes Written = + inttostr(byteswritten)); CompleteProg; // for last 10 clocks CloseFile(RBFFile); res := Set_USB_Device_BitMode($07,$00); // turn bit bang mode off CloseComPort; Application Note AN232BM-01
8 Waveform diagram for the FPGA example CLK nconfig DATA0 nstatus CONFIG_DONE DATA VALUE WRITTEN TO DEVICE HEX
a8251 Features General Description Programmable Communications Interface
a8251 Programmable Communications Interface June 1997, ver. 2 Data Sheet Features a8251 MegaCore function that provides an interface between a microprocessor and a serial communication channel Optimized
RJ45 Shielded (standard) port pinout. CS9000, Jetstream 4000 + 8500, Lanstream 2000, RTA8/RJX, RRC16, MTA8/RJX & SXDC8/RJX
Shielded (standard) port pinout Pin Circuit Function 1 DCD Input Data Carrier Detect 2 DSR Output Data Set Ready 3 DTR Input Data Terminal Ready 4 S/GND Signal Ground 5 TXD Output Transmit Data 6 RXD Input
DLP-USB232M USB SERIAL UART Interface Module
DLP-USB232M USB SERIAL UART Interface Module The DLP-USB232M uses FTDI s 2nd generation FT232BM USB-UART chip that adds extra functionality to its predecessor (the FT8U232AM) and reduces external component
2-Port RS232/422/485 Combo Serial PCI Card
2-Port RS232/422/485 Combo Serial PCI Card Installation Guide 1. Introduction Thank you for purchasing this 2-Port RS232/422/485 Combo Serial PCI Card. It is a universal add in card that connects to a
RS-232 COMMUNICATIONS
Technical Note D64 0815 RS-232 COMMUNICATIONS RS-232 is an Electronics Industries Association (EIA) standard designed to aid in connecting equipment together for serial communications. The standard specifies
VSCOM USB PRO Series Industrial I/O Adapters
VSCOM USB PRO Series Industrial I/O Adapters 1.Introduction The VSCOM USB PRO Series Industrial I/O Adapters are advanced USB to Serial Adapters that connect to 1, 2, 4 or 8 RS-232/422/485 serial devices.
16-Port RS232 to USB2.0 High Speed Multi Serial Adapter (w/ Metal Case) Installation Guide
16-Port RS232 to USB2.0 High Speed Multi Serial Adapter (w/ Metal Case) Installation Guide 1. Introduction Thank you for purchasing this 16-Port RS232 to USB2.0 High Speed Multi Serial Adapter. It is an
Manual Serial PCI Cards
Manual Serial PCI Cards W&T Models 13011, 13410 13411, 13610 13611, 13812 Version 1.4 Subject to error and alteration 37 01/2005 by Wiesemann & Theis GmbH Subject to errors and changes: Since we can make
2-Port RS232/422/485 Combo Serial to USB2.0 Adapter (w/ Metal Case and Screw Lock Mechanism) Installation Guide
2-Port RS232/422/485 Combo Serial to USB2.0 Adapter (w/ Metal Case and Screw Lock Mechanism) Installation Guide 1. Introduction Thank you for purchasing this 2-Port RS232/422/485 Combo Serial to USB Adapter.
Objectives. Basics of Serial Communication. Simplex vs Duplex. CMPE328 Microprocessors (Spring 2007-08) Serial Interfacing. By Dr.
CMPE328 Microprocessors (Spring 27-8) Serial Interfacing By Dr. Mehmet Bodur Objectives Upon completion of this chapter, you will be able to: List the advantages of serial communication over parallel communication
USB TO SERIAL ADAPTER
USB TO SERIAL ADAPTER (Model: U232-P9V2) SPECIFICATIONS CONTENTS 1. GENERAL SPECIFICATIONS... 1 1.1 PRODUCT SURFACE... 1 1.2 PRODUCT DIMENSION... 2 1.3 PRODUCT FEATURES... 3 1.4 PRODUCT SPECIFICATIONS...
The Analyst RS422/RS232 Tester. With. VTR, Monitor, and Data Logging Option (LOG2) User Manual
12843 Foothill Blvd., Suite D Sylmar, CA 91342 818 898 3380 voice 818 898 3360 fax www.dnfcontrolscom The Analyst RS422/RS232 Tester With VTR, Monitor, and Data Logging Option (LOG2) User Manual Manual
Serial Communications
Serial Communications 1 Serial Communication Introduction Serial communication buses Asynchronous and synchronous communication UART block diagram UART clock requirements Programming the UARTs Operation
WHQL Certification Approval...2 User Interface...3 SUNIX s COMLab..4
INDEX WHQL Certification Approval...2 User Interface....3 SUNIX s COMLab..4 1.0 Introduction...5 2.0 Specification..5 2.1 Features 2.2 Universal Serial PCI Card 2.3 RS-232 Specification 2.4 Low Profile
PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999
232 232232 PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999 Guarantee. FULL 36 MONTHS GUARANTEE. We guarantee your interface card for a full 36 months from purchase, parts and labour, provided it has been
BLUETOOTH SERIAL PORT PROFILE. iwrap APPLICATION NOTE
BLUETOOTH SERIAL PORT PROFILE iwrap APPLICATION NOTE Thursday, 19 April 2012 Version 1.2 Copyright 2000-2012 Bluegiga Technologies All rights reserved. Bluegiga Technologies assumes no responsibility for
Cable Guide. Click on the subject to view the information. Digi Cables Building Cables General Cable Information
Cable Guide Click on the subject to view the information. Digi Cables Building Cables General Cable Information Digi Cables Click on the subject to view the information. Digi Connector Options Digi Connector
TTL-232R-3V3 USB to TTL Serial Converter Cable
Future Technology Devices International Ltd. TTL-232R-3V3 USB to TTL Serial Converter Cable The TTL-232R-3V3 is a USB to TTL serial converter cable incorporating FTDI s FT232RQ USB - Serial UART interface
UART IP Core Specification. Author: Jacob Gorban [email protected]
UART IP Core Specification Author: Jacob Gorban [email protected] Rev. 0.6 August 11, 2002 This page has been intentionally left blank Revision History Rev. Date Author Description 0.1 Jacob Gorban
RS-485 Protocol Manual
RS-485 Protocol Manual Revision: 1.0 January 11, 2000 RS-485 Protocol Guidelines and Description Page i Table of Contents 1.0 COMMUNICATIONS BUS OVERVIEW... 1 2.0 DESIGN GUIDELINES... 1 2.1 Hardware Design
ELAN DIGITAL SYSTEMS LTD. SL232 PC- CARD USER S GUIDE
ELAN DIGITAL SYSTEMS LTD. LITTLE PARK FARM ROAD, SEGENSWORTH WEST, FAREHAM, HANTS. PO15 5SJ. TEL: (44) (0)1489 579799 FAX: (44) (0)1489 577516 e-mail: [email protected] website: http://www.pccard.co.uk
VDIP1. Vinculum VNC1L Module. Datasheet
Future Technology Devices International Ltd. VDIP1 Vinculum VNC1L Module Datasheet Version 1.02 Issue Date: 2010-05-31 Future Technology Devices International Ltd (FTDI) Unit 1, 2 Seaward Place, Centurion
RS232C < - > RS485 CONVERTER S MANUAL. Model: LD15U. Phone: 91-79-4002 4896 / 97 / 98 (M) 0-98253-50221 www.interfaceproducts.info
RS232C < - > RS485 CONVERTER S MANUAL Model: LD15U INTRODUCTION Milestone s model LD-15U is a RS232 to RS 485 converter is designed for highspeed data transmission between computer system and or peripherals
Using Xbee 802.15.4 in Serial Communication
Using Xbee 802.15.4 in Serial Communication Jason Grimes April 2, 2010 Abstract Instances where wireless serial communication is required to connect devices, Xbee RF modules are effective in linking Universal
Future Technology Devices International Ltd FT232H Single Channel Hi- Speed USB to Multipurpose UART/FIFO IC
Future Technology Devices International Ltd FT232H Single Channel Hi- Speed USB to Multipurpose UART/FIFO IC The FT232H is a single channel USB 2.0 Hi- Speed (480Mb/s) to UART/FIFO IC. It has the capability
The Answer to the 14 Most Frequently Asked Modbus Questions
Modbus Frequently Asked Questions WP-34-REV0-0609-1/7 The Answer to the 14 Most Frequently Asked Modbus Questions Exactly what is Modbus? Modbus is an open serial communications protocol widely used in
ALL-USB-RS422/485. User Manual. USB to Serial Converter RS422/485. ALLNET GmbH Computersysteme 2015 - Alle Rechte vorbehalten
ALL-USB-RS422/485 USB to Serial Converter RS422/485 User Manual ALL-USB-RS422/485 USB to RS-422/485 Plugin Adapter This mini ALL-USB-RS422/485 is a surge and static protected USB to RS-422/485 Plugin Adapter.
Experiments: Labview and RS232
Experiments: Labview and RS232 September 2013 Dušan Ponikvar Faculty of Mathematics and Physics Jadranska 19, Ljubljana, Slovenia There are many standards describing the connection between a PC and a microcontroller
UC232R ChiPi Minimum Component FT232RL USB to RS232 Converter Cable
Future Technology Devices International Ltd. UC232R ChiPi Minimum Component FT232RL USB to RS232 Converter Cable Incorporating Clock Generator Output and FTDIChip-ID Security Dongle The UC232R ChiPi is
USB to serial chip CH340
The DataSheet of CH340 (the first) 1 1. Introduction USB to serial chip CH340 English DataSheet Version: 1D http://wch.cn CH340 is a USB bus convert chip and it can realize USB convert to serial interface,
Using HyperTerminal with Agilent General Purpose Instruments
Using HyperTerminal with Agilent General Purpose Instruments Windows HyperTerminal can be used to program most General Purpose Instruments (not the 531xx series counters) using the RS-232 Serial Bus. Instrument
Cabling Guide for Console and AUX Ports
Cabling Guide for Console and AUX Ports Contents Introduction Prerequisites Requirements Components Used Conventions Table of Routers with Console and AUX Ports Console Port Settings for Terminal Connection
1.1 Connection. 1.1.1 Direct COM port connection. 1. Half duplex RS232 spy cable without handshaking
POS function Marchen POS-DVR surveillance system is a professional surveillance integrated with POS system. By bringing video and POS transaction data together, the POS-DVR surveillance system provides
Part 1. MAX 525 12BIT DAC with an Arduino Board. MIDI to Voltage Converter Part1
MIDI to Voltage Converter Part 1 MAX 525 12BIT DAC with an Arduino Board 1 What you need: 2 What you need : Arduino Board (Arduino Mega 2560) 3 What you need : Arduino Board (Arduino Mega 2560) Digital
Industrial Multi-port Serial Cards
SUNIX I.N.C. Success Stories Industrial Multi-port Cards Multi-port Cards Introduction & Features Universal PCI Cards - Lite Interface Cards RS-232/422/485 Interface Cards PCI Express Cards - Lite Interface
User s Manual TCP/IP TO RS-232/422/485 CONVERTER. 1.1 Introduction. 1.2 Main features. Dynamic DNS
MODEL ATC-2000 TCP/IP TO RS-232/422/485 CONVERTER User s Manual 1.1 Introduction The ATC-2000 is a RS232/RS485 to TCP/IP converter integrated with a robust system and network management features designed
Introduction the Serial Communications Huang Sections 9.2, 10.2 SCI Block User Guide SPI Block User Guide
Introduction the Serial Communications Huang Sections 9.2, 10.2 SCI Block User Guide SPI Block User Guide Parallel Data Transfer Suppose you need to transfer data from one HCS12 to another. How can you
PART B QUESTIONS AND ANSWERS UNIT I
PART B QUESTIONS AND ANSWERS UNIT I 1. Explain the architecture of 8085 microprocessor? Logic pin out of 8085 microprocessor Address bus: unidirectional bus, used as high order bus Data bus: bi-directional
Single channel data transceiver module WIZ2-434
Single channel data transceiver module WIZ2-434 Available models: WIZ2-434-RS: data input by RS232 (±12V) logic, 9-15V supply WIZ2-434-RSB: same as above, but in a plastic shell. The WIZ2-434-x modules
Elo Interactive Digital Signage (IDS): Remote Management
APPLICATION NOTES Elo Interactive Digital Signage (IDS): Remote Management Large signage installations require a way to manage the devices from a central location. Elo IDS displays are designed with this
SyncLink GT2/GT4 Serial Adapter
SyncLink GT2/GT4 Serial Adapter Hardware User s Manual MicroGate Systems, Ltd http://www.microgate.com MicroGate and SyncLink are registered trademarks of MicroGate Systems, Ltd. Copyright 2008 2012 MicroGate
Introduction: Implementation of the MVI56-MCM module for modbus communications:
Introduction: Implementation of the MVI56-MCM module for modbus communications: Initial configuration of the module should be done using the sample ladder file for the mvi56mcm module. This can be obtained
Future Technology Devices International Ltd
Future Technology Devices International Ltd FT4232H Quad High Speed USB to Multipurpose UART/MPSSE IC The FT4232H is FTDI s 5 th generation of USB devices. The FT4232H is a USB 2.0 High Speed (480Mb/s)
Why you need to monitor serial communication?
Why you need to monitor serial communication Background RS232/RS422 provides 2 data lines for each data channel. One is for transmitting data and the other for receiving. Because of these two separate
RS-422/485 Multiport Serial PCI Card. RS-422/485 Multiport Serial PCI Card Installation Guide
RS-422/485 Multiport Serial PCI Card Installation Guide 21 Contents 1. Introduction...1 2. Package Check List...2 3. Board Layouts and Connectors...3 3.1 2S with DB9 Male Connectors...3 3.1.1 JP5: UART
LS-101 LAN to Serial Device server. User s Manual
LS-101 LAN to Serial Device server User s Manual Revision History Revision No Date Author Remarks 0.1 August 29, 2001 IDC Initial document INTRODUCTION Overview Almost all instruments and most industrial
EvB 5.1 v5 User s Guide
EvB 5.1 v5 User s Guide Page 1 Contents Introduction... 4 The EvB 5.1 v5 kit... 5 Power supply...6 Programmer s connector...7 USB Port... 8 RS485 Port...9 LED's...10 Pushbuttons... 11 Potentiometers and
Elettronica dei Sistemi Digitali Costantino Giaconia SERIAL I/O COMMON PROTOCOLS
SERIAL I/O COMMON PROTOCOLS RS-232 Fundamentals What is RS-232 RS-232 is a popular communications interface for connecting modems and data acquisition devices (i.e. GPS receivers, electronic balances,
8254 PROGRAMMABLE INTERVAL TIMER
PROGRAMMABLE INTERVAL TIMER Y Y Y Compatible with All Intel and Most Other Microprocessors Handles Inputs from DC to 10 MHz 8 MHz 8254 10 MHz 8254-2 Status Read-Back Command Y Y Y Y Y Six Programmable
USB2.0 <=> I2C V4.4. Konverter Kabel und Box mit Galvanischetrennung
USB2.0 I2C V4.4 Konverter Kabel und Box mit Galvanischetrennung USB 2.0 I2C Konverter Kabel V4.4 (Prod. Nr. #210) USB Modul: Nach USB Spezifikation 2.0 & 1.1 Unterstützt automatisch "handshake
How to setup a serial Bluetooth adapter Master Guide
How to setup a serial Bluetooth adapter Master Guide Nordfield.com Our serial Bluetooth adapters part UCBT232B and UCBT232EXA can be setup and paired using a Bluetooth management software called BlueSoleil
Application Note 83 Fundamentals of RS 232 Serial Communications
Application Note 83 Fundamentals of Serial Communications Due to it s relative simplicity and low hardware overhead (as compared to parallel interfacing), serial communications is used extensively within
PL-2303 Edition USB to Serial Bridge Controller Product Datasheet
PL-2303 Edition USB to Serial Bridge Controller Product Datasheet Document Revision: 1.6 Document Release: Prolific Technology Inc. 7F, No. 48, Sec. 3, Nan Kang Rd. Nan Kang, Taipei 115, Taiwan, R.O.C.
DSX Master Communications
DSX Access Systems, Inc. PC to Master Controller - Direct Connect Communications DSX Master Communications Communications between the Comm Server PC and the Master Controller can take several forms which
Future Technology Devices International Ltd
Future Technology Devices International Ltd Datasheet Chipi-X Cable Chipi-X is a USB to full-handshake RS232 cable with a male DB9 connector. This cable is available with or without an enclosure. 1 Introduction
Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs
Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs AN033101-0412 Abstract This describes how to interface the Dallas 1-Wire bus with Zilog s Z8F1680 Series of MCUs as master devices. The Z8F0880,
Cable Pinouts. SRP I/O Module
Cable Pinouts C This appendix lists the cables and connector pinout assignments for the cables used with the ERX-700 series and ERX-1400 series. Topic Page SRP I/O Module C-1 CT1 and CE1 I/O Modules C-4
WHQL Certification Approval...2 User Interface...3 128K software FIFO 4 Universal PCI Interface...5 Ready for 64-bit System...5
0 INDEX WHQL Certification Approval...2 User Interface...3 128K software FIFO 4 Universal PCI Interface...5 Ready for 64-bit System...5 1.0 Introduction 6 2.0 Features.. 6 3.0 Hardware Guide... 7 3.1 System
NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter
NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter Description: The NTE2053 is a CMOS 8 bit successive approximation Analog to Digital converter in a 20 Lead DIP type package which uses a differential
Technical data. General specifications. Indicators/operating means. 30 Hz Multiplex operation 30 Hz / n, n = number of sensors, n 5
Model Number Single head system Features Parameterization interface for the application-specific adjustment of the sensor setting via the service program ULTRA 000 programmable switch outputs Hysteresis
Wireless Security Camera
Wireless Security Camera Technical Manual 12/14/2001 Table of Contents Page 1.Overview 3 2. Camera Side 4 1.Camera 5 2. Motion Sensor 5 3. PIC 5 4. Transmitter 5 5. Power 6 3. Computer Side 7 1.Receiver
Application Note AN_208. FT311D and FT312D Demo_APK_User_GuideFT311D and FT312D Demo_APK_User_Guide
AN_208 FT311D and FT312D Demo_APK_User_GuideFT311D and FT312D Demo_APK_User_Guide Version1.3 Issue Date: 2013-09-09 FTDI s FT311D device is targeted specifically at providing a data bridge from an Android
Application Note 2. Using the TCPDIAL & TCPPERM Commands to Connect Two TransPort router Serial Interfaces Over TCP/IP.
Application Note 2 Using the TCPDIAL & TCPPERM Commands to Connect Two TransPort router Serial Interfaces Over TCP/IP. Reverse Telnet or Serial Terminal Server MultiTX feature UK Support March 2014 1 Contents
Serial Communications
April 2014 7 Serial Communications Objectives - To be familiar with the USART (RS-232) protocol. - To be able to transfer data from PIC-PC, PC-PIC and PIC-PIC. - To test serial communications with virtual
Future Technology Devices International Ltd FT2232H Dual High Speed USB to Multipurpose UART/FIFO IC
Future Technology Devices International Ltd FT2232H Dual High Speed USB to Multipurpose UART/FIFO IC The FT2232H is FTDI s 5 th generation of USB devices. The FT2232H is a USB 2.0 High Speed (480Mb/s)
isco Connecting Routers Back to Back Through the AUX P
isco Connecting Routers Back to Back Through the AUX P Table of Contents Connecting Routers Back to Back Through the AUX Ports...1 Introduction...1 Before You Begin...1 Conventions...1 Prerequisites...1
BIT COMMANDER. Serial RS232 / RS485 to Ethernet Converter
BIT COMMANDER Serial RS232 / RS485 to Ethernet Converter (Part US2000A) Copyrights U.S. Converters 1 Contents Overview and Features... 3 Functions..5 TCP Server Mode... 5 Httpd Client Mode.5 TCP Auto mode....6
USART and Asynchronous Communication
The USART is used for synchronous and asynchronous serial communication. USART = Universal Synchronous/Asynchronous Receiver Transmitter Our focus will be on asynchronous serial communication. Asynchronous
Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System
Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System ECU DB9 USB 20-060_A.DOC Page 1 of 18 9/15/2009 2009 Precision Airmotive LLC This publication may not be copied
NB3H5150 I2C Programming Guide. I2C/SMBus Custom Configuration Application Note
NB3H550 I2C Programming Guide I2C/SMBus Custom Configuration Application Note 3/4/206 Table of Contents Introduction... 3 Overview Process of Configuring NB3H550 via I2C/SMBus... 3 Standard I2C Communication
Advanced Data Capture and Control Systems
Advanced Data Capture and Control Systems Tronisoft Limited Email: [email protected] Web: www.tronisoft.com RS232 To 3.3V TTL User Guide RS232 to 3.3V TTL Signal Converter Modules P/N: 9651 Document
The DB9-USB Family of. UART Converter Modules. Datasheet
Future Technology Devices International Ltd The DB9-USB Family of UART Converter Modules Datasheet Document Reference No.: FT_000204 Issue Date: 2011-08-31 Future Technology Devices International Ltd (FTDI)
IP SERIAL DEVICE SERVER
IP SERIAL DEVICE SERVER ( 1 / 2 / 4 serial port ) Installation guide And User manual Version 1.0 1Introduction... 5 1.1Direct IP mode...5 1.2Virtual COM mode...5 1.3Paired mode...6 1.4Heart beat... 6
RS232 Programming and Troubleshooting Guide for Turbo Controls
RS232 Programming and Troubleshooting Guide for Turbo Controls This Troubleshooting guide is intended for the set up and troubleshooting of the control panels onboard RS232 output. Refer to the Installation
LOW COST GSM MODEM. Description. Part Number
Dual Band 900 / 1800 MHz Fax, SMS and Data Integral SIM Card holder Siemens TC-35i GSM Engine Rugged Extruded Aluminium Enclosure Compact Form Factor 86 x 54 x 25mm RS232 Interface with Auto baud rate
MasterBlaster Serial/USB Communications Cable User Guide
MasterBlaster Serial/USB Communications Cable User Guide 101 Innovation Drive San Jose, CA 95134 www.altera.com Software Version: 80 Document Version: 1.1 Document Date: July 2008 Copyright 2008 Altera
Work with Arduino Hardware
1 Work with Arduino Hardware Install Support for Arduino Hardware on page 1-2 Open Block Libraries for Arduino Hardware on page 1-9 Run Model on Arduino Hardware on page 1-12 Tune and Monitor Models Running
DS1721 2-Wire Digital Thermometer and Thermostat
www.dalsemi.com FEATURES Temperature measurements require no external components with ±1 C accuracy Measures temperatures from -55 C to +125 C; Fahrenheit equivalent is -67 F to +257 F Temperature resolution
Making a DB to RJ45 adapter.
Making a DB to RJ45 adapter. DB9 to RJ45 adapters are often used in combination with a RS232 repeater for extending the distance of a serial RS232 link, but can be used for any adapter or converter purposes.
1-Port R422/485 Serial PCIe Card
1-Port R422/485 Serial PCIe Card Installation Guide 1. Introduction Thank you for purchasing this 1-Port RS422/485 Serial PCI Express (PCIe) Card. It is a universal add in card that connects to a PC or
XR-500 [Receipt Printer User s Manual ]
XR-500 [Receipt Printer User s Manual ] All specifications are subjected to change without notice TABLE OF CONTENTS 1. Parts Identifications 2 2. Setting up the printer 3 2.1 Unpacking 3 2.2 Connecting
Using Altera MAX Series as Microcontroller I/O Expanders
2014.09.22 Using Altera MAX Series as Microcontroller I/O Expanders AN-265 Subscribe Many microcontroller and microprocessor chips limit the available I/O ports and pins to conserve pin counts and reduce
Monitor Program (Windows version) Instruction Manual
Monitor Program (Windows version) Instruction Manual Department of Anaesthesia and Intensive Care The Chinese University of Hong Kong Version 4.0BAugust 2004 CONTENTS Chapter Page 1 Introduction 3 Basic
The 104 Duke_ACC Machine
The 104 Duke_ACC Machine The goal of the next two lessons is to design and simulate a simple accumulator-based processor. The specifications for this processor and some of the QuartusII design components
Application Note AN_243. FT312D USB Host to UART Cable Application
Future Technology Devices International Ltd Application Note AN_243 FT312D USB Host to UART Cable Application Document Reference No. FT_000839 Issue Date: 2013-05-21 This application note illustrates how
x10* CP290 HOME CONTROL INTERFACE PROGRAMMING GUIDE FOR ADVANCED PROGRAMMERS
x10* CP290 HOME CONTROL INTERFACE PROGRAMMING GUIDE FOR ADVANCED PROGRAMMERS 1 TABLE OF CONTENTS 3. Introduction. 6. Programming. 7. RS-232 connections. a. Byte format. 9. Download Base Housecode. IO.
8051 MICROCONTROLLER COURSE
8051 MICROCONTROLLER COURSE Objective: 1. Familiarization with different types of Microcontroller 2. To know 8051 microcontroller in detail 3. Programming and Interfacing 8051 microcontroller Prerequisites:
K128. USB PICmicro Programmer. DIY Electronics (HK) Ltd PO Box 88458, Sham Shui Po, Hong Kong. http://www.kitsrus.com mailto: peter@kitsrus.
K128 USB PICmicro Programmer DIY Electronics (HK) Ltd PO Box 88458, Sham Shui Po, Hong Kong http://www.kitsrus.com mailto: [email protected] Last Modified March 31 2003 Board Construction The board is
MACHINE ARCHITECTURE & LANGUAGE
in the name of God the compassionate, the merciful notes on MACHINE ARCHITECTURE & LANGUAGE compiled by Jumong Chap. 9 Microprocessor Fundamentals A system designer should consider a microprocessor-based
DB9-USB-RS232 Module. Male & Female. Datasheet
Future Technology Devices International Ltd DB9-USB-RS232 Module Male & Female Datasheet Document Reference No.: FT_000204 Issue Date: 2010-02-19 Future Technology Devices International Ltd (FTDI) Unit
Measurement and Analysis Introduction of ISO7816 (Smart Card)
Measurement and Analysis Introduction of ISO7816 (Smart Card) ISO 7816 is an international standard related to electronic identification cards with contacts, especially smart cards, managed jointly by
DeviceMaster UP Modbus Controller to Controller Communication
DeviceMaster UP Modbus Controller to Controller Communication UP Today s Modbus installations are becoming increasingly complex. More and more installations are requiring the use of multiple Modbus controllers
DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV
DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV UNIT I THE 8086 MICROPROCESSOR 1. What is the purpose of segment registers
USB to FIFO Parallel Interface Module
USB to FIFO Parallel Interface Module The DLP-USB245M is the 2nd generation of DLP Design s USB adapter. This device adds extra functionality to it s DLP-USB predecessor with a reduced component count
USB-COM232-PLUS4. Datasheet
Future Technology Devices International Ltd USB-COM232-PLUS4 Datasheet Document Reference No.: FT_000148 Issue Date: 2010-04-12 Future Technology Devices International Ltd (FTDI) Unit 1, 2 Seaward Place,
2-port RS-232 High Speed Low Profile Universal PCI Serial Board
SER5037HL port RS3 High Speed Low Profile Universal PCI Serial Board Introduction SUNIX SER5037HL, Universal PCI serial communication board, allows users to add or expand two RS3 ports on PCbased system.
Appendix A. This Appendix includes the following supplemental material:
Appendix A This Appendix includes the following supplemental material: Cabling Diagrams and Instructions Connectors (9-pin D-type) Data Transfer Protocols Usage/Handshaking Ultimax Dual Screen Console
GTS-4E Hardware User Manual. Version: V1.1.0 Date: 2013-12-04
GTS-4E Hardware User Manual Version: V1.1.0 Date: 2013-12-04 Confidential Material This document contains information highly confidential to Fibocom Wireless Inc. (Fibocom). Fibocom offers this information
