A Scalable, High-Performance, Real-Time Control Architecture With

Total Page:16

File Type:pdf, Size:1020Kb

A Scalable, High-Performance, Real-Time Control Architecture With A Scalable, High-Performance, Real-Time Control Architecture with Application to Semi-Autonomous Teleoperation by Zihan Chen A dissertation submitted to The Johns Hopkins University in conformity with the requirements for the degree of Doctor of Philosophy. Baltimore, Maryland October, 2017 ⃝c Zihan Chen 2017 All rights reserved Abstract A scalable and real-time capable infrastructure is required to enable high-performance control and haptic rendering of systems with many degrees-of-freedom. The specific platform that motivates this thesis work is the open research platform da Vinci Re- search Kit (dVRK). For the system architecture, we propose a specialized IEEE-1394 (FireWire) broad- cast protocol that takes advantage of broadcast and peer-to-peer transfers to mini- mize the number of transactions, and thus the software overhead, on the control PC, thereby enabling fast real-time control. It has also been extended to Ethernet via a novel Ethernet-to-FireWire bridge protocol. The software architecture consists of a distributed hardware interface layer, a real-time component-based software frame- work, and integration with the Robot Operating System (ROS). The architecture is scalable to support multiple active manipulators, reconfigurable to enable researchers to partition a full system into multiple independent subsystems, and extensible at all levels of control. This architecture has been applied to two semi-autonomous teleoperation applica- ii ABSTRACT tions. The first application is a suturing task in Robotic Minimally Invasive Surgery (RMIS), that includes the development of virtual fixtures for the needle passing and knot tying sub-tasks, with a multi-user study to verify their effectiveness. The second application concerns time-delayed teleoperation of a robotic arm for satellite servic- ing. The research contribution includes the development of a line virtual fixture with augmented reality, a test for different time delay configurations and a multi-user study that evaluates the effectiveness of the system. Thesis Advisor Peter Kazanzides Ph.D., Johns Hopkins University, Baltimore Thesis Committee Russell H. Taylor Ph.D., Johns Hopkins University, Baltimore Louis L. Whitcomb Ph.D., Johns Hopkins University, Baltimore iii Acknowledgments First I would like to thank my advisor Professor Peter Kazanzides. His guidance, motivation, firm and continuous support and encouragement was a constant presence during my Ph.D. and Master work over the past years. He was always willing to share his deep knowledge in electronics, software and robotics, always available whenever I wanted to discuss ideas, issues and progress. I could not have had a better advisor and mentor for my Ph.D. study. I would like to thank Professor Louis L. Whitcomb for his guidance and for par- ticipating on my thesis and GBO committee. I would also like to thank Professor Russell H. Taylor for the wonderful Computer Integrated Surgery course, which intro- duced me to the medical robotics field and gave me the opportunity to work with Dr. Kazanzides, for advising the virtual fixture for suturing project, and for participating on my thesis committee. I would additionally like to thank Professor Iulian Iordachita for his help in me- chanical design and manufacture, as well as for participating on my GBO committee. I would like to thank Professor Scott Smith for participating on my GBO committee, iv ACKNOWLEDGMENTS for sharing his insight into software engineering and for writing my annual review let- ter. Special thanks to Professor Allison Okamura for advising me during my master program. Thanks to Professor Simon Leonard for sharing his knowledge in software, robotics and computer vision. Many thanks to Anton Deguet for helping me write and debug numerous lines of code, teaching me almost every aspect of programming, sharing his broad wisdom in software design as well as his appreciation of fine coffee. I am also thankful for the many fun conversations we had. I would also like to thank Balazs P. Vagvolgyi for sharing his expertise in computer vision and software. I would like to thank members of the Sensing, Manipulation, and Real-Time System (SMARTS) group for all the guidance, help, support and discussion over the years. Special thanks to Dr. Paul Thienphrapa for his patient guidance for software design, FPGA programming and FireWire. Thanks to Dr. Tian Xia for help in compiling and debugging code and advice on Ph.D. life. Thanks to Dr. Min Yang Jung for his help on various software/hardware topics. Thanks to Dr. H. Tutkun Sen and Ehsan Azimi for the endless wonderful conversations. Thanks to Long Qian for his help in developing FPGA firmware. Thanks to Jie Ying Wu for organizing allthe lab lunches. Thanks also to the other members of SMARTS: Nathan Cho, Sungmin Kim, Andrew Hundt, Paul Wilkening and Isha Kandaswamy. I was also lucky to be part of the larger Laboratory for Computational Sensing and Robotics. I owe special thanks to Dr. Jonathan Bohren for sharing his insights in software and robotics and v ACKNOWLEDGMENTS introducing the Robot Operating System. Thanks to Dr. S. Swaroop Vedula for his help in designing the user study, as well as analyzing data. Thanks to Dr. Anand Malpani for his help in designing virtual fixtures, and for paper writing. Thanks to Dr. Kelleher R. Guerin for sharing his expertise in mechanical design and robotics. Thanks also to Preetham Chalasani for all the great conversations and the good food. Finally, I would like to thank my parents, Yuewei Chen and Ping Chen, for their constant love, guidance, encouragement, and support. vi Dedication I dedicate my dissertation work to my parents for all the help, support, encour- agement and love during the long journey. This Thesis would not have been possible without you! vii Contents Abstract ii Acknowledgments iv List of Tables xv List of Figures xvi 1 Introduction 1 1.1 The da Vinci Research Kit (dVRK) . .2 1.2 Challenges of a scalable and high performance architecture for dVRK5 1.3 Overview of Architectures . .7 1.4 Proposed Approach . 10 1.5 Applications . 12 1.6 Broader Impact . 13 1.7 Overview of Contributions . 13 1.7.1 A broadcast-based fieldbus communication protocol . 13 viii CONTENTS 1.7.2 A bridge design to enable real-time control over a conventional network . 14 1.7.3 An analytical model of the timing performance for the proposed protocols and EtherCAT . 14 1.7.4 A scalable and extensible software architecture . 15 1.7.5 Virtual fixtures for suturing and knot tying tasks . 15 1.7.6 Virtual fixtures for time-delayed teleoperation for satellite ser- vicing . 16 2 System Architecture 17 2.1 Introduction and Overview of Thesis Contributions . 17 2.2 Historical Context . 19 2.3 Fieldbus Survey . 20 2.4 Distributed I/O System . 26 2.4.1 Introduction to IEEE 1394 . 29 2.4.2 FireWire Transactions Timing Performance . 33 2.4.3 System Performance . 33 2.4.4 Analysis . 34 2.5 Broadcast Communication Protocol . 36 2.5.1 Transmission model . 37 2.5.2 Bus optimizations . 39 2.5.3 System Characteristics . 41 ix CONTENTS 2.5.3.1 Determinism . 41 2.5.3.2 Error tolerance . 42 2.5.3.3 Backward compatibility . 43 2.5.4 Experiments . 44 2.5.4.1 FPGA hardware-based measurement . 44 2.5.4.2 Model parameter estimation with PC software-based measurement . 45 2.5.5 Discussion . 53 2.6 Ethernet-to-FireWire Bridge for Real-time Control . 54 2.6.1 Introduction . 55 2.6.2 Ethernet-to-FireWire Bridge Design . 57 2.6.2.1 Prototype Bridge Board Design . 57 2.6.2.2 Frame Transmission Protocol . 58 2.6.2.3 Status Control . 61 2.6.2.4 Ethernet Software . 61 2.6.3 Experiments . 63 2.6.3.1 FireWire Transaction over Ethernet . 64 2.6.3.2 System Performance . 66 2.6.3.3 Cross-platform Capability . 68 2.6.3.4 Ethernet Bridge Timing Model . 69 2.6.4 Discussion . 70 x CONTENTS 2.7 Performance Comparison with EtherCAT . 73 2.7.1 Introduction to EtherCAT . 73 2.7.2 EtherCAT Timing Performance . 75 2.7.2.1 EtherCAT Timing Model . 76 2.7.2.2 Model Parameter Measurement . 78 2.7.2.3 EtherCAT Model Verification . 80 2.7.3 Time Performance Comparison on dVRK . 82 2.7.4 Discussion . 82 2.8 Conclusions . 85 3 Software Architecture 89 3.1 Introduction . 89 3.2 Thesis Contributions . 92 3.3 Related Work . 93 3.4 Low-Level Hardware Interface Layer (Fieldbus) . 96 3.5 Real-time framework for robot control . 98 3.5.1 Design Goals . 98 3.5.2 Design Analysis . 99 3.5.3 Implementation . 104 3.6 System integration via ROS interfaces . 106 3.6.1 CISST to ROS Bridge . 107 3.6.2 ROS Ecosystem . 109 xi CONTENTS 3.7 Discussion and Conclusion . 109 4 Application to Virtual Fixture Assisted Suturing 112 4.1 Introduction . 112 4.2 Thesis Contributions . 115 4.3 Virtual Fixtures . 116 4.3.1 Task Description and Analysis . 116 4.3.2 Impedance Virtual Fixture . 117 4.3.3 Needle Passing Virtual Fixture . 120 4.3.4 Knot Tying Virtual Fixture . 123 4.4 Experiment . 124 4.4.1 System Implementation on da Vinci Research Kit . 125 4.4.2 Needle Passing Sub-task . 126 4.4.3 Knot Tying Sub-task . 127 4.4.4 Test Procedure . 128 4.4.5 Data Collection and Analysis . 130 4.5 Results and Discussion . 130 4.5.1 Needle Passing Sub-task . 131 4.5.1.1 Statistical Analysis . 131 4.5.1.2 Trajectory Analysis . 131 4.5.1.3 Operator Workload . 133 4.5.1.4 Subjective Evaluation . 135 xii CONTENTS 4.5.2 Knot Tying Sub-task .
Recommended publications
  • How to Set up IP Camera by Using a Macintosh Computer
    EDIMAX COMPUTER INC. Edimax IP Camera series How to set up IP Camera by using a Macintosh computer 2011 Edimax Computer 3350 Scott Blvd., Building #15 Santa Clara, California 95054, USA Phone 408-496-1105 • Fax 408-980-1530 www.edimax.us How to setup Edimax IP Camera by a Macintosh computer Introduction The most important thing to setup IP Camera is to assign a static IP address so the camera can work with your network. So far the Edimax IP Cam Admin utility is Windows based only and the program can not work for Macintosh computers. Macintosh users can follow this guide to set up Edimax IP camera. Step 1. Understand the IP address used in your network. Have your Macintosh computer operate as usual. Go into System Preferences. In System Preferences, Go to Network. Select the adapter you are using. It could be an Airport card, a third- party Wireless card, or an Ethernet Adapter. Write down the IP address, subnet mask, Router, and DNS server address. We have a usb wireless card in this example. Its IP address 10.0.1.2 told us that the IP addresses used in the network are 10.0.1.x. All the devices in the network have the first three octets the same, but the last octet number must be different. We decide to give our new camera an IP address 10.0.1.100 because no other computer device use 10.0.1.100. We temporarily disconnect the wireless adapter. You can turn off your Airport adapter if you use it to get on Internet.
    [Show full text]
  • IEEE 802.1Aq Standard, Is a Computer Networking Technology Intended to Simplify the Creation and Configuration of Networks, While Enabling Multipath Routing
    Brought to you by: Brian Miller Yuri Spillman - Specified in the IEEE 802.1aq standard, is a computer networking technology intended to simplify the creation and configuration of networks, while enabling multipath routing. - Link State Protocol - Based on IS-IS -The standard is the replacement for the older spanning tree protocols such as IEEE 802.1D, IEEE 802.1w, and IEEE 802.1s. These blocked any redundant paths that could result in layer 2(Data Link Layer), whereas IEEE 802.1aq allows all paths to be active with multiple equal cost paths, and provides much larger layer 2 topologies. 802.1aq is an amendment to the "Virtual Bridge Local Area Networks“ and adds Shortest Path Bridging (SPB). Shortest path bridging, which is undergoing IEEE’s standardization process, is meant to replace the spanning tree protocol (STP). STP was created to prevent bridge loops by allowing only one path between network switches or ports. When a network segment goes down, an alternate path is chosen and this process can cause unacceptable delays in a data center network. The ability to use all available physical connectivity, because loop avoidance uses a Control Plane with a global view of network topology Fast restoration of connectivity after failure, again because of Link State routing's global view of network topology Under failure, the property that only directly affected traffic is impacted during restoration; all unaffected traffic just continues Ideas are rejected by IEEE 802.1. accepted by the IETF and the TRILL WG is formed. Whoops, there is a problem. They start 802.1aq for spanning tree based shortest path bridging Whoops, spanning tree doesn’t hack it.
    [Show full text]
  • 802.11 B/G/N Standalone Wi-Fi + BLE 4.1Module with Integrated Antenna
    Product Brief AVIC 802.11 b/g/n Standalone Wi-Fi + BLE 4.1Module with Integrated Antenna Description AVIC is a highly integrated low power single-stream (1x1) IEEE 802.11 b/g/n standalone Wi-Fi + BLE 4.1 Module. This highly tuned certified Module integrates crystals, flash and antenna for easy hardware design. This feature-rich Module using Qualcomm QCA4010 and CSR 8811 SoCs are specially designed for various verticals of Internet of Things (IoT) like Smart Home, Industrial IoT, Smart Retail and Smart City. The AVIC Module includes a suite of communication protocols including HTTP, IPv4v6, TCP, SSL 3.0, TLS1.0, TLS1.1, TLS1.2, DHCP, ICMP, IGMP, MQTT, mDNS and DNS, as well as support for multiple cloud agents like AWS and Azure. Size: 16 mm x 20 mm x 2.1 mm AVIC with integrated low power MCU, it is designed to answer manufacturer demand for easy integration, low power with Applications advanced features while minimizing size, cost and power consumption. This low power highly secure Module with its Smart Home sensor networks integrated security engine is suitable for battery powered portable Smart city sensor networks wireless applications. High performance HID controllers Internet of Things (IoT) sensor networks Smart door locks Features Smart lighting networks Industry-leading single stream IEEE 802.11bgn Wi-Fi and Connected white goods Bluetooth Low Energy (BLE) v4.1 connectivity solution Integrated on-chip application processor and user memory (800 KB) Data rate up to 72.2 Mbps MCS7 HT20 Block Diagram UART, SPI, I2C, I2S,
    [Show full text]
  • Introduction to Spanning Tree Protocol by George Thomas, Contemporary Controls
    Volume6•Issue5 SEPTEMBER–OCTOBER 2005 © 2005 Contemporary Control Systems, Inc. Introduction to Spanning Tree Protocol By George Thomas, Contemporary Controls Introduction powered and its memory cleared (Bridge 2 will be added later). In an industrial automation application that relies heavily Station 1 sends a message to on the health of the Ethernet network that attaches all the station 11 followed by Station 2 controllers and computers together, a concern exists about sending a message to Station 11. what would happen if the network fails? Since cable failure is These messages will traverse the the most likely mishap, cable redundancy is suggested by bridge from one LAN to the configuring the network in either a ring or by carrying parallel other. This process is called branches. If one of the segments is lost, then communication “relaying” or “forwarding.” The will continue down a parallel path or around the unbroken database in the bridge will note portion of the ring. The problem with these approaches is the source addresses of Stations that Ethernet supports neither of these topologies without 1 and 2 as arriving on Port A. This special equipment. However, this issue is addressed in an process is called “learning.” When IEEE standard numbered 802.1D that covers bridges, and in Station 11 responds to either this standard the concept of the Spanning Tree Protocol Station 1 or 2, the database will (STP) is introduced. note that Station 11 is on Port B. IEEE 802.1D If Station 1 sends a message to Figure 1. The addition of Station 2, the bridge will do ANSI/IEEE Std 802.1D, 1998 edition addresses the Bridge 2 creates a loop.
    [Show full text]
  • JTAG Controller Board Specification
    JTAG Controller Board Specification Rice University April 27, 2011 Introduction The board is intended for evaluation of the National Semiconductor JTAG 1149.1. SCANSTA101 System Test Access Master [1]. Its block diagram is shown on Fig.1. The board is build as a VME A24D16 Slave; the dimensions are 6U x 160 mm. The VME interface circuitry is implemented in the Xilinx XCR3128 CPLD. The SCANSTA101 Master provides JTAG access to external devices via two front panel connectors. One 14-pin connector is compatible with the Xilinx JTAG cable (LVTTL levels), and another 16-pin connector is compatible with the JTAG cable for the CSC EMU Trigger Motherboard [2] (LVDS levels). Fig.1: Block Diagram of the JTAG Controller Board 1. SCANSTA101 JTAG Master The SCANSTA101 is designed to function as a test master for the IEEE 1149.1 boundary scan test system. It is an enhanced version, and a replacement for, the SCANPSC100 device. The interface from the SCANSTA101 to the system processor (VME bus master, in our case) is implemented by reading and writing registers, some of which map to locations in the SCANSTA101 memory. Hardware handshaking and interrupt lines are provided as part of the processor interface. The block diagram of the device is shown in Fig.2. The external JTAG slave devices are connected via the front panel connectors. These may be any JTAG- compatible FPGA, programmable memories and others. The internal Test and Debug Interface Port (Fig.2) is not used, although its inputs and outputs are available on the board as a test points.
    [Show full text]
  • Power Over Ethernet
    How To | Power over Ethernet Introduction Power over Ethernet (PoE) is a technology allowing devices such as IP telephones to receive power over existing LAN cabling. This technical note is in four parts as follows: • PoE Technology • How PoE works • Allied Telesyn PoE implementation • Command Reference What information will you find in this document? The first two parts of this document describe the PoE technology, and the installation and management advantages that PoE can provide. This is followed by an overview of how PoE works, Power Device(PD) discovery, PD classification, and the delivery of power to PD data cables. The third part of this document focuses on Allied Telesyn’s implementation of PoE on the AT-8624PoE switch. The document concludes with a list of configuration and monitoring commands. Which product and software version does this information apply to? The information provided here applies to: • Products: AT8624PoE switch • Software version: 2.6.5 C613-16048-00 REV C www.alliedtelesyn.com PoE Technology Power over Ethernet is a mechanism for supplying power to network devices over the same cabling used to carry network traffic. PoE allows devices that require power, called Powered Devices (PDs), such as IP telephones, wireless LAN Access Points, and network cameras to receive power in addition to data, over existing infrastructure without needing to upgrade it. This feature can simplify network installation and maintenance by using the switch as a central power source for other network devices. A device that can source power such as an Ethernet switch is termed Power Sourcing Equipment (PSE). Power Sourcing Equipment can provide power, along with data, over existing LAN cabling to Powered Devices.
    [Show full text]
  • Modular Embedded PC's with Intel® Atom™ E3800 Top Side The
    QSys Modular Embedded PC’s with Intel® Atom™ E3800 The Qseven mainboard (carrier board) MB-Q7-2 in combination with The highlights: a standard Qseven 2.0 (x86) module forms an ultra compact hardware kit. By use of the new Intel® Atom™ family E3800 (BayTrail“) a very Based on Intel® Atom™ E3800 („BayTrail“) economical and extremely powerful embedded PC is available. The Optimized for ultra low power integrated Intel® HD Graphics Engine (Generation 7) raises the bar also Extended temperature in graphic intensive low power applications. High speed interfaces like Gigabit Ethernet, USB 3.0 and eSATAp The compact design with only 10 cm x 10 cm x 2,3 cm and the huge DisplayPort and LVDS amount of interfaces and functionalities allows the user to create high Extendable with 2x Mini PCIe incl. SIM card socket performant but passive cooled solutions like BoxPCs, PanelPCs and Onboard eMMC and mSATA socket custom specific devices in a very fast and convenient way. Integrated security features Audio with integrated amplifier Another key aspect is security which is supported by TPM 1.2/2.0, Ultra compact design (10cm x 10 cm x 2,3 cm) a Sentinel HL security controller and an integrated secure EEPROM Longevity support which allows the user to realize a very secure embedded device. Also usable as embedded alternative for Intel® NUC Standard boards (eNUC) Top side Bottom side Technical data hardware kit Performance/configurations Microprocessor (CPU module) With extended temperature support: CPU: Intel® Atom™ E3800 („BayTrail-I“) 5 variants from 1,46 GHz Single Core up to E3815: 1x 1,46 GHz, 512 KB L2-Cache, HD Gfx 400/400 MHz, 1,91 GHz Quad Core 5 W TDP, 2 GB Single-Ch.
    [Show full text]
  • USB to Ethernet Adapter | QUICK SETUP GUIDE RF-PCC132
    USB to Ethernet Adapter | QUICK SETUP GUIDE RF-PCC132 Thank you for purchasing this high quality Rocketfish USB to Ethernet Adapter. Use this adapter to instantly connect to a 10/100 Mbps network from the USB port on your desktop or laptop computer. 3 When the installation is complete, click Finish to restart your Package contents computer and finish the installation. • USB to Ethernet Adapter • Driver CD • Quick Setup Guide Setting up the adapter Note: The driver software must be installed before you connect the adapter. The adapter does not need to be connected for the software to install. To install on a Windows PC: 1 Insert the driver CD into the optical drive on your computer. The software should run automatically. The initial installation screen opens. Note: If the software does not run automatically, locate and double-click Run.exe on the driver CD. 4 Connect the USB connector on the adapter to an open USB port on 2 Click on your operating system, then follow on-screen instructions. your desktop or laptop computer. 5 Connect a network cable to the Ethernet port on the adapter. To install on a Mac: 1 Insert the driver CD into the optical drive of your computer. On the driver CD, locate and click AX88772.dmg. Click the DISK IMAGE icon. The driver setup driver setup dialog box opens. Note: If the computer has Windows 8, you do not need to install the driver from the disc. The drivers are installed automatically. 2 When the installer screen opens, click 4 When installation is complete, click Restart to FCC Information Continue to start the installation, then restart the computer and finish the installation.
    [Show full text]
  • Overview of Xilinx JTAG Programming Cables and Reference Schematics for Legacy
    R Overview of Xilinx JTAG Programming Cables and Reference Schematics for Legacy XTP029 (v1.0) March 28, 2008 Parallel Cable III (PC3) Summary This technical publication provides an overview of Xilinx JTAG Cables and a reference schematic for the legacy Xilinx Parallel Cable III product (PC3) for educational use. Description Xilinx offers the Hi-Speed Platform Cable USB (PCUSB) and the Parallel Cable IV (PC4) cables. The PC4 cable supports both the IEEE 1284 parallel port interface and IEEE STD 1149.1 (JTAG) standards for in-system programming or embedded debug. These cables are more thoroughly described in the “Overview of Xilinx JTAG Solutions.” For reference purposes, the PC3 product schematic is also provided in this document. Note: The PC3 cable product has been discontinued and replaced by PCUSB and PC4. Both the PCUSB and PC4 cables have expanded capabilities, superior download performance, and robust immunity to system interface sensitivities when compared to the legacy PC3 cable. The PC3 product was first introduced in 1998 and then discontinued in 2002. Software support for PC3 was removed starting in March 2008 with the 10.1 release of Xilinx iMPACT software. Versions of iMPACT software after 10.1 release do not support the PC3 cable. See “Notice of Disclaimer” regarding warranty and support of the PC3 schematic information. Overview of Xilinx recommends the Platform Cable USB (PCUSB) or Parallel Cable IV (PC4) for new Xilinx JTAG designs. The PCUSB and PC4 offer reliable operation, higher speed download, voltage support down to 1.5V, keyed ribbon cable connector for error-free insertion, and improved ground/signal Solutions integrity.
    [Show full text]
  • JTAG Advanced Capabilities and System Design
    SCANSTA101,SCANSTA111,SCANSTA112, SCANSTA476 JTAG Advanced Capabilities and System Design Literature Number: SNLA211 SIGNAL PATH designer® Tips, tricks, and techniques from the analog signal-path experts No. 117 JTAG Advanced Capabilities Feature Article ............... 1-6 and System Design Comms Applications .........2 — By David Morrill, Principal Applications Engineer he JTAG bus, originally intended for board-level manufacturing test, has evolved into a multipurpose bus also used for In-System Program- Tming (ISP) of FPGAs, FLASH, and processor emulation. Th is article’s intent is to provide a brief overview of JTAG. Several system-level design options will be proposed, from the simplest board-level JTAG chain through a complex embedded multidrop system. Finally, an appendix is included that contains some useful defi nitions. Overview: What is JTAG? Th e Joint Test Action Group (JTAG) is an industry group formed in 1985 to develop a method to test populated circuit boards after manufacture. Th e group’s work resulted in the IEEE 1149.1 standard entitled Standard Test Access Port and Boundary-Scan Architecture. Th e terms 1149.1, JTAG, “dot 1”, and SCAN all refer to the same thing, the IEEE 1149.1 Standard for Boundary Scan Test. What is JTAG and what does it do? 1) It is a serial test bus. 2) It adds a Test Access Port (TAP) consisting of four pins to an IC (fi ve with optional RESET) as shown in Figure 1. – TDI (Test Data In) – TDO (Test Data Out) – TCK (Test Clock) – TMS (Test Mode Select) – TRST (Test Reset) JTAG provides access to interconnected digital cells on an IC: 1) with a method of access for test and diagnostics and the – ability to do factory and remote testing and diagnostics, – ability to perform software debug, and – reduce “No-Fault-Found” problems 2) with a method for in-circuit upgrades and the – ability to remotely perform system-wide fi rmware upgrades High Effi ciency.
    [Show full text]
  • Uc1394a Carrier Product Overview
    UC1394a Carrier product overview UC1394a Carrier Highly flexible ultra-compact© carrier board with FPGA, IEEE 1394 (FireWire®) + USB interfacing and various I/O Key features Customer benefits ® © Hardware: · micro-line and ultra-compact boards offer the opportunity to directly reduce time to · Highly flexible carrier board for the ultra- © market compact multi chip module (MCM) family ® © ® · micro-line and ultra-compact boards · micro-line bus compatibility allows direct maximize software creativity and minimize connection between micro-line® and ultra- © high density and sensitive high frequency compact products hardware design · Capable to carry UC1394a-1, UC1394a-2 ® © © · micro-line and ultra-compact boards are and further ultra-compact daughter multi the perfect target hardware for system chip modules development, prototyping and volume · User programmable Xilinx SPARTAN II production FPGA with 50 kGates enables various I/O · overall shorter design and system cycles interface- or test pattern- realization for the © ® dramatically reduce development costs ultra-compact -or the micro-line -bus ® © · micro-line and ultra-compact boards are · Onboard FPGA booting Flash with various manufactured according to ISO 9002:2000 available standard FPGA solutions also · CE-qualification ensures first-class product allow to run the system without additional performance and industrial quality FPGA design effort · Attractive quantity pricing · Equipped with interface connectors for IEEE 1394 (FireWire®), USB 1.1 (slave), RS232 and 4 channel analog
    [Show full text]
  • Dataman 48Pro Specification
    Dataman 48Pro www.dataman.com • Universal 48 pin ZIF socket accepts both 300/600 mil DIP devices up to 48 pin • Intelligent pin drivers allow varying voltages to be applied to any pin delivering signals without overshoot, increasing The Dataman 48Pro is a universal 48pin driver, PC based programmer programming yield with ISP capabilities with USB 2.0 and parallel connectivity. The 48Pro is built to meet the demands of development labs and field engineers • Pin drivers operate for universal programming. down to 1.8V so you'll Supporting over 22,000 devices with new support being added monthly, be ready to program the Dataman 48Pro can program without the need for a family-specific the full range of module, giving you the freedom to choose the optimal device for your design. Using the built-in, in-circuit serial programming (ISP) connector, tomorrow’s advanced the programmer is able to program ISP compatible chips in circuit. low-voltage devices • ISP capable using the Hardware General JTAG interface • FPGA based totally reconfigurable 48 powerful TTL pindrivers provide H/L/pull_up/pull_down and read capability for each pin of the socket. Advanced pindrivers incorporate high-quality high-speed circuitry to • Multiprogramming deliver signals without overshoot or ground bounce for all supported devices. Pin drivers operate down to 1.8V so you'll be ready to program the full range of today's advanced low-voltage devices support allows one PC • The programmer performs device insertion tests and contact checks before device programming. These to control up to eight capabilities, supported by overcurrent protection and signature-byte check help prevent chip damage due to operator error units programming • Built-in protection circuits eliminates damage to programmer and/or device due to environment or independently or as a operator failure.
    [Show full text]