Application Note: Optical data transmission with the Avocet Image Sensor

Size: px
Start display at page:

Download "Application Note: Optical data transmission with the Avocet Image Sensor"

Transcription

1 : Optical data transmission with the Avocet Image Sensor This application note presents a reference design for using optical data transmissions with the MLX75411 Avocet image sensor. The MLX75605 optical transceiver is used to create the optical link. JHU Page 1 of

2 1 Introduction This application note shows how you can use the MLX75605 optical transceiver to convert the data from the Avocet to the optical domain by using a POF cable. The goal is to have a strict optical connection between the MLX75411 and the receiving end. For this reference design, we will re-use the camera head of the evaluation kit EVB This camera head features an LVDS output. In this reference design we will interrupt the LVDS connection between camera head and main board and insert an optical cable. In Figure1, the FPGA on top takes the LVDS input (double serial stream) and converts it into a single serial stream. The FPGA at the bottom takes the serial output from the optical transceiver and converts it back to the original LVDS stream. Figure 1: Overview of the system In a production environment, the LVDS would not be used at all. The parallel output of the Avocet imager will be directly taken by the FPGA and converted into a serial stream as input for the optical transceiver. JHU Page 2 of

3 2 Component overview In the EVB75411 evaluation kit, LVDS is used to transfer data from camerahead to main board. The parallel data is serialized into 2 serial pairs, requiring 2 cable pairs. To transfer the data from the electrical to the optical domain we use the MLX75605 MOST Transceiver as a pure optical transceiver without the MOST protocol to avoid overhead on the optical link. Figure 1 gives a graphical overview of the system. 2.1 MLX75605 The MLX75605 is a 150Mbps MOST transceiver. The MLX75605 embeds a 650nm light source and driver IC. The driver IC includes on chip calibration circuitry to achieve optimal performance by compensating each transceivers LED and process variations. The receiver part consists of monolithic photo-receivers, enabling best in class EMI immunity. The MOST protocol is not used for sending and receiving the imager data. We use the hardware of the MOST transceiver to send the data in a serial way. More info about the MLX75605 can be found in the MLX75605 datasheet. The MLX75605 features a serial data input. This data should be DC balanced. For this, we use the 8b10b protocol used in Ethernet. 2.2 MLX75411 The MLX75411 imager, named Avocet imager, is a CMOS rolling shutter imager. It has a resolution of 1024x512 pixels and a 154dB high dynamic range (HDR). This imager uses a 2 wire serial protocol as a control interface (I 2 C). The video interface is LVTTL. It transmits 12 bits of parallel data, hsync, vsync and a clock. More info about the MLX75411 can be found in the MLX75411 datasheet. 2.3 FPGA board In this reference design we use 2 Spartan3E development boards to do the data conversions. A link to these boards can be found in the appendix at the end of the document. 2.4 Interface PCB The interface PCB to connect to the spartan3e development board contains the MLX75605, the deserializer and serializer used in the Melexis camerahead and a voltage regulator. A single board was designed that can serve a dual purpose: receiving interface or transmitting interface. JHU Page 3 of

4 3 FPGA code The FPGA code consists of 2 parts: the code for the transmitting FPGA and the code for the receiving FPGA. The transmitting FPGA takes the data coming from the camerahead, encodes and serializes this data and sends it to the MLX The receiving FPGA takes the serial data from the MLX75605, deserializes and decodes this data and sends it to the LVDS serializer. After the LVDS serializer, the data is sent to the MLX75411 evaluation kit. 3.1 Transmitter The transmitter code has 4 main blocks: a line buffer, a controller for the buffer, the 8b/10b encoder and a LVDS serializer. Figure 2 shows the main block diagram of the receiving transmitter. Input Line buffer Line buffer control Encoder 8b/10b Serializer output Inputs The inputs for the Receiver FPGA are: PIXD: 12 bit output data from the Avocet PIXCLK: pixel clock from the Avocet VSYNC: vertical blanking signal HSYNC: horizontal blanking signal Figure 2: FPGA transmitter block diagram JHU Page 4 of

5 3.1.2 Line_buffer_control This module generates read and write addresses for the line buffer. It also writes a special code in the line buffer when Hsync or Vsync are low. This code is interpreted by the 8b10b encoder so we can reconstruct the Hsync and Vsync signal out of the serial data stream Line_buffer For the line buffer a module from the core generator is used: Block Memory Generator v3.1. The block memory is configured as a dual port ram. This allows reading and writing with 2 different clocks. We use 2 clocks: one for storing the pixel data in the line buffer, and one for reading back data from the buffer. Figure 3: Avocet line clocks As you can see in Figure 3 there are = 1322 clocks in one line. The first 1024 clocks are used to bring out the data of the 1024 pixels. The last 298 pixels are horizontal blanking. During these clocks no pixel data is sent. It is not required and even inefficient to send the hsync clocks over the optical link. This would be a waste of bandwidth. We recommend to store the 1322 clocks in a line buffer and read them back with a slower clock. This clock will be called: clk_readbuffer. This clock is 4/5 the speed of the pixel clock. With this clock we read the 1024 pixels in the same time as we write the 1322 clocks with the pixel clock of the Avocet. So we can reduce the bandwidth with 1/ Encoder 8b10b The 8b10b encoder encodes 8 bits of data into 10 bits of DC balanced code. Information about how the encoding exactly works can be found on the internet (see wikipedia link in the appendix). The MLX75605 needs the data in a DC balanced format. The 8b/10b protocol takes care of this. It also ensures sufficient bit transitions to recover the clock on the receiving end. The control symbols used for reconstruction the Hsync and Vsync signal are: K28.7, K28.2 and K28.3. The data coming from the Avocet is 12 bits. In this example the lower 4 bits are ignored so it is easier to use the 8b10b encoder. This can be changed so all 12 bits are encoded Serializer The serializer takes the 10 bits coming from the encoder and puts them in a serial stream. The serial clock is 10 times faster then the readbuffer clock. The value of the encoder is hold for one clock of clk_readbuffer. Then each bit is send at a time with the 10 times faster clock Output The serialized data is outputted in LVDS format. These 2 output pins go directly to the MLX Receiver The receiver consists of 5 big blocks: deserializer, decoder 10b/8b, line buffer, line buffer control and recover control signals. The clock can be recovered from the serial datastream. This is not implemented. For now the serial clock is transferred from the transmitting development kit to the receiving kit by using a coax cable. Figure 4 shows the block diagram of the receiver. JHU Page 5 of

6 Input Deserializer Decoder 10b/8b Line buffer decoder Line buffer decoder control Recover control signals Output Figure 4: FPGA receiver block diagram Input The MLX75605 sends out the data in LVDS format. The receiving FPGA gets the data in a serial form Deserializer The deserializer takes the serial stream and converts it into a 10bit parallel stream. The clock from the parallel stream is 10 times lower then the serial clock. To sync the deserializer with the serial datastream we look for the comma signal (K28.7) in the serial datastream. At the start of every hsync, we encoded the K28.7 symbol in the serial datastream. This bitorder is unique in the encoded data so we use this code to lock the deserializer with the serial stream Decoder The decoder converts the encoded data back into the original 8bit data. The decoder outputs the 8 bit of decoded data. It also outputs one extra bit: is_kcode. This bit is turned high by the decoder when a control symbol is detected. When this bit is high, we have to look at the data to know if we have a Hsync or Vsync signal. JHU Page 6 of

7 3.2.4 Line buffer control This module generates read and write addresses for the line buffer Line buffer Just like the transmitter, the line buffer is a dual port ram block. We can read and write at the same time and do this with different clocks Recover control signals This block looks at the is_kchar bit and reconstructs the hsync and vsync signal. When a hsync signal is detected we add the 298 clocks of Hsync which we removed from the serial stream (see 3.1.3) JHU Page 7 of

8 MLX75411/MLX System Figure 5 shows the setup of the optical link. You have the camerahead which is connected to the transmitting FPGA by using an HDMI cable. The left development board is the transmitting FPGA. The right development kit is the receiver. The thin cable is the POF cable connecting the 2 MLX75605 s. Figure 5: Avocet optical link setup Note: the MOST transceivers support only one-way communication on a single fibre. In this setup, the Avocet imager runs in fully automatic mode, including automatic exposure control and automatic high dynamic range control. If imager control is required over optical fibre as well, then a second fibre is needed for upstream communication of the I2C commands. The MLX75605 MOST transceiver already supports 2 fibers: one for downstream and one for upstream communications Figure 6 shows the pcb connected to the transmitting FPGA. The pcb is not completely soldered. All the parts that are needed for the receiving FPGA are left out. Figure 7 shows the pcb connected to the receiving FPGA. The HDMI connector to the bottom should be connected to the Rapidview kit. JHU Page 8 of

9 MLX75411/MLX75605 Figure 6: pcb connected to the transmitting development board Figure 7: pcb connected to the receiving development board JHU Page 9 of

10 5 Appendix A Information about the Spartan3E development kit can be found on the link below. Information about the 8b10b encoding algorithm can be found on the link below. JHU Page 10 of

Optimal Management of System Clock Networks

Optimal Management of System Clock Networks Optimal Management of System Networks 2002 Introduction System Management Is More Challenging No Longer One Synchronous per System or Card Must Design Source-Synchronous or CDR Interfaces with Multiple

More information

Terasic THDB-SUM SFP. HSMC Terasic SFP HSMC Board User Manual

Terasic THDB-SUM SFP. HSMC Terasic SFP HSMC Board User Manual Terasic THDB-SUM SFP HSMC Terasic SFP HSMC Board User Manual Document Version 1.00 AUG 12, 2009 by Terasic Introduction Page Index INTRODUCTION... 1 1.1 1.1 FEATURES... 1 1.2 1.2 ABOUT THE KIT... 2 1.3

More information

NanEye USB2 Evaluation Unit

NanEye USB2 Evaluation Unit NanEye USB2 Evaluation Unit Table of Contents 1 Overview...3 2 NanoUSB2 Evaluation Board...4 3 NanEye with LED ring...6 4 Evaluation Software...12 4.1 How to Install Awaiba Viewer...13 4.2 How to Start

More information

Chapter 8 OSI Physical Layer

Chapter 8 OSI Physical Layer Chapter 8 OSI Physical Layer Upper OSI layer protocols prepare data from the human network for transmission to its destination. The Physical layer controls how data is placed on the communication media.

More information

250 Mbps Transceiver in LC FB2M5LVR

250 Mbps Transceiver in LC FB2M5LVR 250 Mbps Transceiver in LC FB2M5LVR DATA SHEET 650 nm 250 Mbps Fiber Optic Transceiver with LC Termination LVDS I/O IEC 61754-20 Compliant FEATURES LC click lock mechanism for confident connections Compatible

More information

FEATURES. APPLICATIONS Machine Vision Embedded Instrumentation Motion Control Traffic Monitoring Security

FEATURES. APPLICATIONS Machine Vision Embedded Instrumentation Motion Control Traffic Monitoring Security FEATURES High-performance CMOSIS sensors - Sensitivity: 5.56 V/lux.s - Dynamic range: 60 db - Dark Noise: 8.6 e - - High speed: 95* fps - 8M Pixel: 3360(H) x 2496(V) - Monochrome / Color - Global Shutter

More information

I.C. PCLK_IN DE_IN GND CNTL_IN1 RGB_IN0 RGB_IN1 RGB_IN2 RGB_IN3 RGB_IN4 RGB_IN5 RGB_IN6 RGB_IN7 CNTL_IN7 CNTL_IN6 CNTL_IN5 CNTL_IN4 CNTL_IN3 CNTL_IN2

I.C. PCLK_IN DE_IN GND CNTL_IN1 RGB_IN0 RGB_IN1 RGB_IN2 RGB_IN3 RGB_IN4 RGB_IN5 RGB_IN6 RGB_IN7 CNTL_IN7 CNTL_IN6 CNTL_IN5 CNTL_IN4 CNTL_IN3 CNTL_IN2 19-3558; Rev 4; 8/09 EVALUATION KIT AVAILABLE 27-Bit, 3MHz-to-35MHz General Description The digital video parallel-to-serial converter serializes 27 bits of parallel data into a serial data stream. Eighteen

More information

Ethernet OptoLock EDL300T

Ethernet OptoLock EDL300T Ethernet OptoLock EDL300T DATA SHEET 650 nm 100 Mbps Ethernet Fiber Optic Transceiver with Termination for Bare POF Seamless Digital to Light/ Light to Digital Conversion FEATURES Simple low-cost termination

More information

Technical Article MS-2503

Technical Article MS-2503 Technical Article MS-2503. Slay Your System Dragons with JESD204B by Ian Beavers, Applications Engineer, Analog Devices, Inc. The JESD204B serial data link interface was developed to support the growing

More information

250 Mbps Transceiver in OptoLock IDL300T XXX

250 Mbps Transceiver in OptoLock IDL300T XXX NOT RECOMMENDED FOR NEW DESIGNS * For new designs please see part numbers: FB2M5KVR (2.2 mm POF), FB2M5BVR (1.5 mm POF) 250 Mbps Transceiver in OptoLock IDL300T XXX 650 nm 250 Mbps Fiber Optic Transceiver

More information

ECE 485/585 Microprocessor System Design

ECE 485/585 Microprocessor System Design Microprocessor System Design Lecture 16: PCI Bus Serial Buses Zeshan Chishti Electrical and Computer Engineering Dept. Maseeh College of Engineering and Computer Science Source: Lecture based on materials

More information

DesignCon SerDes Architectures and Applications. Dave Lewis, National Semiconductor Corporation

DesignCon SerDes Architectures and Applications. Dave Lewis, National Semiconductor Corporation DesignCon 2004 SerDes Architectures and Applications Dave Lewis, National Semiconductor Corporation Abstract When most system designers look at serializer/deserializer (SerDes) devices, they often compare

More information

ON Semiconductor PYTHON 1300-C CAMERA MODULE Hardware User Guide Version 1.0

ON Semiconductor PYTHON 1300-C CAMERA MODULE Hardware User Guide Version 1.0 ON Semiconductor PYTHON 1300-C CAMERA MODULE Hardware User Guide Version 1.0 Page 1 Copyright 2017 Avnet, Inc. AVNET, Reach Further, and the AV logo are registered trademarks of Avnet, Inc. All other brands

More information

4.1 Design Concept Demonstration for Altera DE2-115 FPGA Board Demonstration for Cyclone III Development Board...

4.1 Design Concept Demonstration for Altera DE2-115 FPGA Board Demonstration for Cyclone III Development Board... CONTENTS CHAPTER 1 INTRODUCTION OF THE AHA-HSMC... 1 1.1 Features...1 1.2 About the KIT...2 1.3 Getting Help...3 CHAPTER 2 AHA CARD ARCHITECTURE... 4 2.1 Layout and Components...4 2.2 Block Diagram of

More information

HV-F22CL Color Camera. Specifications

HV-F22CL Color Camera. Specifications Specifications Specification(1/14) Tokyo Japan 1. Introduction The Hitachi is a SXGA high precision 3CCD progressive scan color camera, which has single chip digital processing LSI, a C mount prism, three

More information

Adapter Modules for FlexRIO

Adapter Modules for FlexRIO Adapter Modules for FlexRIO Ravichandran Raghavan Technical Marketing Engineer National Instruments FlexRIO LabVIEW FPGA-Enabled Instrumentation 2 NI FlexRIO System Architecture PXI/PXIe NI FlexRIO Adapter

More information

Peripheral Component Interconnect - Express

Peripheral Component Interconnect - Express PCIe Peripheral Component Interconnect - Express Preceded by PCI and PCI-X But completely different physically Logical configuration separate from the physical configuration Logical configuration is backward

More information

Technical Description of LVDS to DVI Adapter (P/N )

Technical Description of LVDS to DVI Adapter (P/N ) Page 1 Technical Description of LVDS to DVI Adapter (P/N 104607) This adapter is designed to convert single or dual LVDS video into DVI-I format video. It accepts LVDS inputs from 20-85MHz (in dual pixel

More information

Terasic THDB- Terasic HSMC-DVI Daughter Board User Manual

Terasic THDB- Terasic HSMC-DVI Daughter Board User Manual Terasic THDB- HSMC-DVI Terasic HSMC-DVI Daughter Board User Manual Document Version 1.0.1 June. 25, 2009 by Terasic Introduction Page Index INTRODUCTION... 1 1.1 1.1 FEATURES... 1 1.2 1.2 ABOUT THE KIT...

More information

A (Very Hand-Wavy) Introduction to. PCI-Express. Jonathan Heathcote

A (Very Hand-Wavy) Introduction to. PCI-Express. Jonathan Heathcote A (Very Hand-Wavy) Introduction to PCI-Express Jonathan Heathcote Motivation Six Week Project Before PhD Starts: SpiNNaker Ethernet I/O is Sloooooow How Do You Get Things In/Out of SpiNNaker, Fast? Build

More information

Upper Level Protocols (ULP) Mapping. Common Services. Signaling Protocol. Transmission Protocol (Physical Coding) Physical Interface (PI)

Upper Level Protocols (ULP) Mapping. Common Services. Signaling Protocol. Transmission Protocol (Physical Coding) Physical Interface (PI) 1 Introduction The Fibre Channel (FC) is logically a bi-directional point-to-point serial data channel, structured for high performance information transport. Physically, Fibre Channel is an interconnection

More information

Digital Blocks Semiconductor IP

Digital Blocks Semiconductor IP Digital Blocks Semiconductor IP TFT Controller General Description The Digital Blocks TFT Controller IP Core interfaces a microprocessor and frame buffer memory via the AMBA 2.0 to a TFT panel. In an FPGA,

More information

MAX96706 GMSL Deserializer Board GMI (Board model number NV013-B) Hardware Specification. Rev. 1.0

MAX96706 GMSL Deserializer Board GMI (Board model number NV013-B) Hardware Specification. Rev. 1.0 MAX96706 GMSL Deserializer Board GMI-96706 (Board model number NV013-B) Hardware Specification Rev. NetVision Co., Ltd. Update History Revision Date Note 2018/04/24 New file (Equivalent to Japanese version

More information

Trends in Digital Interfaces for High-Speed ADCs

Trends in Digital Interfaces for High-Speed ADCs Trends in Digital Interfaces for High-Speed ADCs Robbie Shergill National Semiconductor Corp. INTRODUCTION The analog-to-digital converter is a critical component in many of the most demanding applications

More information

QFBR-S01IN001Z. Optical Phase Interrogator. Data Sheet. Description. Features. Applications

QFBR-S01IN001Z. Optical Phase Interrogator. Data Sheet. Description. Features. Applications Optical Phase Interrogator Description The QFBR-S01IN001Z is a versatile optical phase interrogation (OPI) unit based on Avago proprietary technology. The working principle is based on comparing a fixed

More information

cpci-dart Base-Board & Daughter-Board

cpci-dart Base-Board & Daughter-Board DYNAMIC ENGINEERING 150 DuBois, Suite C Santa Cruz, CA 95060 (831) 457-8891 Fax (831) 457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 User Manual cpci-dart Base-Board & Daughter-Board Eight-Channel

More information

Data Sheet. QFBR-S01IN001Z Optical Phase Interrogator. Description. Features. Applications

Data Sheet. QFBR-S01IN001Z Optical Phase Interrogator. Description. Features. Applications QFBR-S01IN001Z Optical Phase Interrogator Data Sheet Description Avago technologies QFBR-S01IN001Z is a versatile optical phase interrogation (OPI) unit based on Avago proprietary technology. The working

More information

Computer Network. Direct Link Networks Reliable Transmission. rev /2/2004 1

Computer Network. Direct Link Networks Reliable Transmission. rev /2/2004 1 Computer Network Direct Link Networks Reliable Transmission rev 1.01 24/2/2004 1 Outline Direct link networks (Ch. 2) Encoding Framing Error detection Reliable delivery Media access control Network Adapter

More information

COMOSS EVB Series Transceiver Test Board Data Sheet. Overview. COMOSS Electronic Co., LTD. All rights reserved.

COMOSS EVB Series Transceiver Test Board Data Sheet. Overview. COMOSS Electronic Co., LTD. All rights reserved. COMOSS IEEE EVB 1394b Series Series Test Dongle Board V.2 COMOSS EVB Series Transceiver Test Board Data Sheet EVB(Evaluation Broad) is a Fast Ethernet on Layer 2 POFs (Plastic Optical Fiber) or Transceivers

More information

MIPI D-PHY REFERENCE TERMINATION BOARD (RTB) OVERVIEW AND DATASHEET

MIPI D-PHY REFERENCE TERMINATION BOARD (RTB) OVERVIEW AND DATASHEET The InterOperability Laboratory MIPI D-PHY REFERENCE TERMINATION BOARD (RTB) OVERVIEW AND DATASHEET Abstract: This document serves as the primary documentation for the MIPI D-PHY Reference Termination

More information

How to use SSD1928. This software demonstrates hardware features unique to the Solomon Systech SSD1928 Image Processor. These features include

How to use SSD1928. This software demonstrates hardware features unique to the Solomon Systech SSD1928 Image Processor. These features include How to use SSD1928 This software demonstrates hardware features unique to the Solomon Systech SSD1928 Image Processor. These features include cmos camera interface hardware JPEG decode hardware 4-bit SD

More information

SOC MPEG Decoder Chipset. Datasheet

SOC MPEG Decoder Chipset. Datasheet SOC MPEG Decoder Chipset Datasheet System-On-Chip (SOC) Technologies (February 2017) 1 Product Overview The SOC MPEG Codec Chipsets are based on off-the-shelf FPGAs and SOC codec IP cores. The SOC IP cores

More information

File loader FL10801 Power LED driver for automotive applications Power saving low side coil driver Electronic fuse

File loader FL10801 Power LED driver for automotive applications Power saving low side coil driver Electronic fuse 1. Scope The following document describes the use of the file loader FL10801. The file loader is intended for use as a programming tool for a single MLX10801 IC as well as an in-circuit-programmer for

More information

Chapter 1 Introduction Features Getting Help Chapter 2 Architecture Block Diagram... 6

Chapter 1 Introduction Features Getting Help Chapter 2 Architecture Block Diagram... 6 1 CONTENTS Chapter 1 Introduction... 3 1.1 Features... 3 1.2 Getting Help... 4 Chapter 2 Architecture... 5 2.1 Block Diagram... 6 Chapter 3 Pin Description... 8 3.1 HSMC Expansion Connector... 8 Chapter

More information

27 March 2018 Mikael Arguedas and Morgan Quigley

27 March 2018 Mikael Arguedas and Morgan Quigley 27 March 2018 Mikael Arguedas and Morgan Quigley Separate devices: (prototypes 0-3) Unified camera: (prototypes 4-5) Unified system: (prototypes 6+) USB3 USB Host USB3 USB2 USB3 USB Host PCIe root

More information

Digital Blocks Semiconductor IP

Digital Blocks Semiconductor IP Digital Blocks Semiconductor IP General Description The Digital Blocks LCD Controller IP Core interfaces a video image in frame buffer memory via the AMBA 3.0 / 4.0 AXI Protocol Interconnect to a 4K and

More information

RS485 board datasheet EB062-00

RS485 board datasheet EB062-00 RS485 board datasheet EB062-00 00-1 Contents 1. About this document... 2 2. General information... 3 3. Board layout... 4 4. Testing this product... 5 5. Circuit description... 6 Appendix 1 Circuit diagram

More information

White Paper Compromises of Using a 10-Gbps Transceiver at Other Data Rates

White Paper Compromises of Using a 10-Gbps Transceiver at Other Data Rates White Paper Compromises of Using a 10-Gbps Transceiver at Other Data Rates Introduction Many applications and designs are adopting clock data recovery-based (CDR) transceivers for interconnect data transfer.

More information

Terasic THDB- Terasic HSMC-DVI Daughter Board User Manual

Terasic THDB- Terasic HSMC-DVI Daughter Board User Manual Terasic THDB- HSMC-DVI Terasic HSMC-DVI Daughter Board User Manual Document Version 1.0.2 June. 25, 2009 by Terasic Introduction Page Index INTRODUCTION... 1 1.1 1.1 FEATURES... 1 1.2 1.2 ABOUT THE KIT...

More information

Links, clocks, optics and radios

Links, clocks, optics and radios Links, clocks, optics and radios end IP addresses Source Destination Data 171.64.74.55 176.22.45.66 176 10110000 start Example of On-Off Keying +5V 0V Volts 1 0 time Data 0 1 1 0 0 1 0 1 1 0 1 0 1 0

More information

B. Manufacturer shall warrant the camera to be free from defects in material and workmanship for two years from the purchase date.

B. Manufacturer shall warrant the camera to be free from defects in material and workmanship for two years from the purchase date. FD8134V Fixed Dome Network, Vandal-proof & IP66 Camera H.264, 1 Megapixel, MicroSD/SDHC, Compact Dome Design Architectural and Engineering Specification 2.01 Manufacturer A. VIVOTEK Inc. 6F, No.192, Lien-Cheng

More information

User s Manual. PCIe-FRM11 User s Manual (Rev 1.4)

User s Manual. PCIe-FRM11 User s Manual (Rev 1.4) PCIe-FRM11 User s Manual Windows, Windows2000, Windows NT and Windows XP are trademarks of Microsoft. We acknowledge that the trademarks or service names of all other organizations mentioned in this document

More information

TIM-UP 19k-S3-Spartan 6

TIM-UP 19k-S3-Spartan 6 TIM-UP 19k-S3-Spartan 6 Software User Manual Contact Bluetechnix Waidhausenstraße 3/19 A-1140 Vienna AUSTRIA office@bluetechnix.com http://www.bluetechnix.com Date: 2014-05-27 Template No.: 900-306 / A

More information

SERDESUB 913ROS DS90UB913Q Serializer and DS90UB914Q Deserializer Evaluation Kit User s Manual

SERDESUB 913ROS DS90UB913Q Serializer and DS90UB914Q Deserializer Evaluation Kit User s Manual SERDESUB 913ROS DS90UB913Q Serializer and DS90UB914Q Deserializer Evaluation Kit User s Manual Rev 2.1 1 Texas Instruments 11/19/2012 Contents SERDESUB 913ROS... 1 DS90UB913Q Serializer and DS90UB914Q

More information

for Image Applications

for Image Applications This article presents general information on the LVDS interface hard macro for image applications. * LVDS: Low Voltage Differential Signaling Necessity for High-speed Signal Transmission in Consumer Products

More information

CoaXPress HSMC Board Detailed Design Rev.A

CoaXPress HSMC Board Detailed Design Rev.A CoaXPress HSMC Board Detailed Design Rev.A Author: Lennard Streat, Computer Engineering, RIT Multi-Disciplinary Senior Design I RIT Ruggedized Camera Encoder (P14571) 1 P a g e rit-d3-camera-module@googlegroups.com

More information

Figure 1. Block Diagram

Figure 1. Block Diagram THC63LVD1022 30Bit Color/150Mpps Dual-Link LVDS to LVCMOS converter General Description The THC63LVD1022 LVDS (Low Voltage Differential Signaling) converter is designed to support pixel data transmission

More information

8. Selectable I/O Standards in Arria GX Devices

8. Selectable I/O Standards in Arria GX Devices 8. Selectable I/O Standards in Arria GX Devices AGX52008-1.2 Introduction This chapter provides guidelines for using industry I/O standards in Arria GX devices, including: I/O features I/O standards External

More information

FB2M5LVR 250 Mbps Fiber Optic LC Transceiver Data Sheet

FB2M5LVR 250 Mbps Fiber Optic LC Transceiver Data Sheet PCN issued July 0 Please see new version available: FBMLVR Datasheet Rev. E FBMLVR 0 Mbps Fiber Optic LC Transceiver Data Sheet DESCRIPTION Firecomms industrial LC connector has a small form factor housing,

More information

SFP GBIC XFP. Application Note. Cost Savings. Density. Flexibility. The Pluggables Advantage

SFP GBIC XFP. Application Note. Cost Savings. Density. Flexibility. The Pluggables Advantage SFP GBIC XFP The Pluggables Advantage interfaces in the same general vicinity. For example, most major data centers have large Ethernet (and Gigabit Ethernet) networks with copper, multimode and single-mode

More information

F8008. Fiber Modem for up to 4E1 /8E1 +RS232+Ethernet. + optional V.35/QFXS/QFXO

F8008. Fiber Modem for up to 4E1 /8E1 +RS232+Ethernet. + optional V.35/QFXS/QFXO F8008 Fiber Modem for up to 4E1 /8E1 +RS232+Ethernet + optional V.35/QFXS/QFXO Description F8008 is a fiber optical multiplexer of new generation different from the traditional PDH, multiplexing 1 full

More information

Mako G G-503. Gigabit Ethernet camera, ON Semiconductor CMOS sensor, 14 fps. Benefits and features:

Mako G G-503. Gigabit Ethernet camera, ON Semiconductor CMOS sensor, 14 fps. Benefits and features: Mako G G-503 ON Semiconductor CMOS sensor Power over Ethernet Switchable shutter modes Ultra-compact design Gigabit Ethernet camera, ON Semiconductor CMOS sensor, 14 fps Mako G-503 is a 5.0 megapixel GigE

More information

Multi-Gigabit Transceivers Getting Started with Xilinx s Rocket I/Os

Multi-Gigabit Transceivers Getting Started with Xilinx s Rocket I/Os Multi-Gigabit Transceivers Getting Started with Xilinx s Rocket I/Os Craig Ulmer cdulmer@sandia.gov July 26, 2007 Craig Ulmer SNL/CA Sandia is a multiprogram laboratory operated by Sandia Corporation,

More information

Member of the ams Group

Member of the ams Group CMOSIS / AWAIBA is now Member of the ams Group The technical content of this CMOSIS / AWAIBA document is still valid. Contact information: Headquarters: ams AG Tobelbader Strasse 30 8141 Premstaetten,

More information

Network Media and Layer 1 Functionality

Network Media and Layer 1 Functionality Network Media and Layer 1 Functionality BSAD 146 Dave Novak Dean, Chapter 3, pp 93-124 Objectives Introduction to transmission media Basic cabling Coaxial Twisted pair Optical fiber Basic wireless (NIC)

More information

XS1 Link Performance and Design Guidelines

XS1 Link Performance and Design Guidelines XS1 Link Performance and Design Guidelines IN THIS DOCUMENT Inter-Symbol Delay Data Rates Link Resources Booting over XMOS links XS1 System Topologies Layout Guidelines Deployment Scenarios EMI This document

More information

logibayer.ucf Core Facts

logibayer.ucf Core Facts logibayer Color Camera Sensor Bayer Decoder March 6, 2009 Product Specification Core Facts Provided with Core Xylon d.o.o. Documentation User s Guide Design File Formats Encrypted VHDL Fallerovo setaliste

More information

MULTIDYNE INNOVATIONS IN TELEVISION TESTING & DISTRIBUTION INSTRUCTION MANUAL FMX-125

MULTIDYNE INNOVATIONS IN TELEVISION TESTING & DISTRIBUTION INSTRUCTION MANUAL FMX-125 MULTIDYNE INNOVATIONS IN TELEVISION TESTING & DISTRIBUTION INSTRUCTION MANUAL FMX-125 FIBER OPTIC, BI-DIRECTIONAL DATA, CONTACT CLOSURE and AUDIO MULTIPLEXER SYSTEM Revision: 0, Date: October 28, 2013

More information

SGMII Interface Implementation Using Soft-CDR Mode of Stratix III Devices

SGMII Interface Implementation Using Soft-CDR Mode of Stratix III Devices SGMII Interface Implementation Using Soft-CDR Mode of Stratix III Devices May 2008, version 1.0 Application Note 518 Introduction Stratix III device family are one of the most architecturally advanced,

More information

SpaceWire 101. Webex Seminar. February 15th, 2006

SpaceWire 101. Webex Seminar. February 15th, 2006 SpaceWire 101 Webex Seminar February 15th, 2006 www.aeroflex.com/spacewire SpaceWire 101 What is SpaceWire Protocol, Links, Basic Communication Architecture Physical Layer Interface and Network Components

More information

Seamless creativity.

Seamless creativity. Seamless creativity. 2 The 360 4K 3D camera to record, edit and stream complete VR video and audio, anywhere, anytime. 360 degrees is only the beginning. The Samsung 360 Round is a commercial-quality camera

More information

CS/ECE 217. GPU Architecture and Parallel Programming. Lecture 16: GPU within a computing system

CS/ECE 217. GPU Architecture and Parallel Programming. Lecture 16: GPU within a computing system CS/ECE 217 GPU Architecture and Parallel Programming Lecture 16: GPU within a computing system Objective To understand the major factors that dictate performance when using GPU as an compute co-processor

More information

The SC03MPA camera is capable of outputting JPEG format images and PAL/NTSC video (Video is available only per request).

The SC03MPA camera is capable of outputting JPEG format images and PAL/NTSC video (Video is available only per request). SC03MPA: 0.3 Mega Pixels Serial JPEG Camera User Manual 0.3 Mega Pixels Serial JPEG Camera SC03MPA User Manual, Rev. D (2018) For latest user manual, please visit: Introduction The SC03MPA Camera is a

More information

SC20MPC: 2 Mega Pixels Serial JPEG Camera User Manual. Introduction

SC20MPC: 2 Mega Pixels Serial JPEG Camera User Manual. Introduction 2 Mega Pixels Serial JPEG Camera SC20MPC User Manual, Rev. F (August 2018) For latest user manual, please visit: Introduction The SC20MPC Camera is a highly integrated serial JPEG camera module which can

More information

UG0850 User Guide PolarFire FPGA Video Solution

UG0850 User Guide PolarFire FPGA Video Solution UG0850 User Guide PolarFire FPGA Video Solution Microsemi Headquarters One Enterprise, Aliso Viejo, CA 92656 USA Within the USA: +1 (800) 713-4113 Outside the USA: +1 (949) 380-6100 Sales: +1 (949) 380-6136

More information

Virtex 6 FPGA Broadcast Connectivity Kit FAQ

Virtex 6 FPGA Broadcast Connectivity Kit FAQ Getting Started Virtex 6 FPGA Broadcast Connectivity Kit FAQ Q: Where can I purchase a kit? A: Once the order entry is open, you can purchase your Virtex 6 FPGA Broadcast Connectivity kit online or contact

More information

AdvancedTCA Backplane Tester

AdvancedTCA Backplane Tester AdvancedTCA Backplane Tester Alexandra Dana Oltean, Brian Martin POLITEHNICA University Bucharest Romania and CERN 1211Geneva 23 Switzerland Email: alexandra.oltean@cern.ch, brian.martin@cern.ch CERN-OPEN-2005-014

More information

Prosilica GT Megapixel machine vision camera with Sony IMX CMOS sensor. Benefits and features:

Prosilica GT Megapixel machine vision camera with Sony IMX CMOS sensor. Benefits and features: Prosilica GT 1930 Versatile temperature range for extreme environments IEEE 1588 PTP Power ovet Ethernet P-Iris and DC-Iris lens control 2.35 Megapixel machine vision camera with Sony IMX CMOS sensor Prosilica

More information

How to achieve low latency audio/video streaming over IP network?

How to achieve low latency audio/video streaming over IP network? February 2018 How to achieve low latency audio/video streaming over IP network? Jean-Marie Cloquet, Video Division Director, Silex Inside Gregory Baudet, Marketing Manager, Silex Inside Standard audio

More information

PTZ Optics Affordable HDMI, HD-SDI, IP and USB video conferencing cameras

PTZ Optics Affordable HDMI, HD-SDI, IP and USB video conferencing cameras PTZ Optics Affordable HDMI, HD-SDI, IP and USB video conferencing cameras as PTZ Optics Affordable HDMI, HD-SDI, IP and USB video conferencing cameras as P T Z OPTICS 12X USB PTZ OPTICS Video Conferencing

More information

Arria V GX Video Development System

Arria V GX Video Development System Arria V GX Video Development System Like Sign Up to see what your friends like. The Arria V GX FPGA Video Development System is an ideal video processing platform for high-performance, cost-effective video

More information

Course 10: Interfaces Agenda

Course 10: Interfaces Agenda Course 10: Interfaces 1 Agenda Introduction V.24 interface (RS232) USB 2 Introduction 3 Definition(s) (from the web) A boundary across which two independent systems meet and act on or communicate with

More information

Multifunction Controller less STN LCD Software Library and Reference Hardware

Multifunction Controller less STN LCD Software Library and Reference Hardware Multifunction Controller less STN LCD Software Library and Reference Hardware Abstract: mbed LPC1768 Model When an embedded device needs to convey much information to its user, the use of a graphic LCD

More information

PETsys SiPM Readout System

PETsys SiPM Readout System SiPM Readout System FEB/A_v2 FEB/S FEB/I The SiPM Readout System is designed to read a large number of SiPM photo-sensor pixels in applications where a high data rate and excellent time resolution is required.

More information

Growing Together Globally Serial Communication Design In Embedded System

Growing Together Globally Serial Communication Design In Embedded System Growing Together Globally Serial Communication Design In Embedded System Contents Serial communication introduction......... 01 The advantages of serial design......... 02 RS232 interface......... 04 RS422

More information

Pretty Good Protocol - Design Specification

Pretty Good Protocol - Design Specification Document # Date effective October 23, 2006 Author(s) Ryan Herbst Supersedes Draft Revision 0.02 January 12, 2007 Document Title Pretty Good Protocol - Design Specification CHANGE HISTORY LOG Revision Effective

More information

DS16EV5110-EVKD DVI Extender Demo Kit for DVI Cables

DS16EV5110-EVKD DVI Extender Demo Kit for DVI Cables DS16EV5110-EVKD DVI Extender Demo Kit for DVI Cables General Description The DS16EV5110-EVKD DVI Cable Extender Demo Kit provides a complete DVI system extension solution using National s DS16EV5110 -

More information

Dual Channel Video Insert Unit with Ethernet for a Dual Redundant fibre ring

Dual Channel Video Insert Unit with Ethernet for a Dual Redundant fibre ring AMG3721EDRSF Instruction Manual Dual Channel Video Insert Unit with Ethernet for a Dual Redundant fibre ring The AMG3721EDRSF is a standalone single channel video insert unit designed to transmit two video

More information

SV3C DPRX MIPI D-PHY Analyzer. Data Sheet

SV3C DPRX MIPI D-PHY Analyzer. Data Sheet SV3C DPRX MIPI D-PHY Analyzer Data Sheet Table of Contents Table of Contents Table of Contents... 1 List of Figures... 2 List of Tables... 2 Introduction... 3 Overview... 3 Key Benefits... 3 Applications...

More information

Contention Protocols and Networks

Contention Protocols and Networks 4/13/2005 314 Lecture Contention Protocols and Networks 1 Contention Protocols and Networks Contention Protocols CSMA/CD Network Topologies Ethernet 4/13/2005 314 Lecture Contention Protocols and Networks

More information

AC : INFRARED COMMUNICATIONS FOR CONTROLLING A ROBOT

AC : INFRARED COMMUNICATIONS FOR CONTROLLING A ROBOT AC 2007-1527: INFRARED COMMUNICATIONS FOR CONTROLLING A ROBOT Ahad Nasab, Middle Tennessee State University SANTOSH KAPARTHI, Middle Tennessee State University American Society for Engineering Education,

More information

OPTOELECTRONICS SENSORIC

OPTOELECTRONICS SENSORIC OPTOELECTRONICS SENSORIC Chip Scale Package Monolithic Structure CCD and CMOS Technology on a single Chip ESPROS Photonics AG ESPROS Photonics AG offers a range of opto-electronical com-ponents for industrial

More information

White Paper. ORSPI4 Field-Programmable System-on-a-Chip Solves Design Challenges for 10 Gbps Line Cards

White Paper. ORSPI4 Field-Programmable System-on-a-Chip Solves Design Challenges for 10 Gbps Line Cards White Paper ORSPI4 Field-Programmable System-on-a-Chip Solves Design Challenges for 10 Gbps Line Cards Sidhartha Mohanty and Fred Koons Lattice Semiconductor Corporation October 2003 Bringing the Best

More information

Setup/Hold. Set Up time (t su ):

Setup/Hold. Set Up time (t su ): Lecture 10 Agenda Set Up time (t su ): Setup/Hold Minimum amount of time the data is to be held steady prior to the clock event Hold time (t h ): Minimum amount of time the data is to be held steady after

More information

Prosilica GT. Description. 5.1 Megapixel machine vision camera with Sony IMX CMOS sensor. Benefits and features:

Prosilica GT. Description. 5.1 Megapixel machine vision camera with Sony IMX CMOS sensor. Benefits and features: Prosilica GT 2460 Versatile temperature range for extreme environments IEEE 1588 PTP Power over Ethernet P-Iris and DC-Iris lens control Description 5.1 Megapixel machine vision camera with Sony IMX CMOS

More information

--DRAFT-- Data Transmission Receiver

--DRAFT-- Data Transmission Receiver ALMA Atacama Large Millimeter Array Hardware Definition "ALMA06006NDnnnnR" " 2001-11-29" C. Langley, Z. Barnes --DRAFT-- Data Transmission Receiver Chris Langley (clangley@nrao.edu) Zach Barnes (zbarnes@nrao.edu)

More information

LVDS Product. +3.3V LVDS 60Bit Flat Panel Display (FPD) Receiver 135MHz

LVDS Product. +3.3V LVDS 60Bit Flat Panel Display (FPD) Receiver 135MHz LVDS Product DTC30LM36 (Rev. 1.1) REVISED AUGUST 2008 +3.3V LVDS 60Bit Flat Panel Display (FPD) Receiver 135MHz General Description Features The DTC30LM36 receiver is designed to support Wide frequency

More information

GigE Vision camera featuring the Sony IMX267 CMOS sensor, Pregius global shutter

GigE Vision camera featuring the Sony IMX267 CMOS sensor, Pregius global shutter Manta G-895 Latest Sony CMOS sensor Power over Ethernet option Angled head and board level variants Video-iris lens control Description GigE Vision camera featuring the Sony IMX267 CMOS sensor, Pregius

More information

Application Note. MLX90129 Sensor Tag Applications. Scope. Applications. Related Melexis Products. Introduction

Application Note. MLX90129 Sensor Tag Applications. Scope. Applications. Related Melexis Products. Introduction Scope This application note gives some guidelines to detail the use of the MLX90129 for RFID sensor tag applications. The different command sequences to read a sensor and the power check system are described.

More information

Controller IP for a Low Cost FPGA Based USB Device Core

Controller IP for a Low Cost FPGA Based USB Device Core National Conference on Emerging Trends in VLSI, Embedded and Communication Systems-2013 17 Controller IP for a Low Cost FPGA Based USB Device Core N.V. Indrasena and Anitta Thomas Abstract--- In this paper

More information

GAPuino User s Manual

GAPuino User s Manual GAPuino User s Manual Greenwaves Technolgies Version 1.2 Contents 1 Introduction 2 2 2 3 Configuration 5 3.1 Jumper J3......................................... 5 3.2 Resistors..........................................

More information

Ethernet Technologies

Ethernet Technologies Ethernet Technologies CCNA 1 v3 Module 7 NESCOT CATC 1 10 Mbps Ethernet Legacy Ethernet means: 10BASE5 10BASE2 10BASE-T Common features are: frame format timing parameters transmission process basic design

More information

4 Channel Video Insert Unit with Ethernet for a Dual Redundant Single Fibre Ring

4 Channel Video Insert Unit with Ethernet for a Dual Redundant Single Fibre Ring AMG3741EDRSF Instruction Manual 4 Channel Video Insert Unit with Ethernet for a Dual Redundant Single Fibre Ring The AMG3741EDRSF is a standalone four channel video insert unit designed to transmit 4 video

More information

HDMI_TX_HSMC. Terasic HDMI Video Transmitter Daughter Board User Manual

HDMI_TX_HSMC. Terasic HDMI Video Transmitter Daughter Board User Manual HDMI_TX_HSMC Terasic HDMI Video Transmitter Daughter Board User Manual 1 CONTENTS Chapter 1 Introduction... 2 1.1 About the KIT... 2 1.2 Assemble the HDMI_TX_HSMC Board... 3 1.3 Getting Help... 4 Chapter

More information

FUJITSU COMPONENT LIMITED

FUJITSU COMPONENT LIMITED FUJITSU COMPONENT LIMITED o-microgigacn 4-Channel Optical Transceiver Part Number of Module: FPD-10*R008-0E Figure 1: Over view Description Newly developed optical transceiver, FUJITSU COMPONENT s o-microgigacn

More information

FB2M5LVR. 250 Mbps Fiber Optic LC Transceiver Data Sheet FEATURES DESCRIPTION APPLICATIONS AVAILABLE OPTIONS

FB2M5LVR. 250 Mbps Fiber Optic LC Transceiver Data Sheet FEATURES DESCRIPTION APPLICATIONS AVAILABLE OPTIONS FB2MLVR 20 Mbps Fiber Optic LC Transceiver Data Sheet DESCRIPTION The Firecomms LC transceiver features a small form factor housing, compliant with IEC 614 20. This device offers engineering teams a compact

More information

CMOS USORIA. Features

CMOS USORIA. Features CMOS USORIA A CMOS, 2 Megapixel (1600x1200), 1/2 Inch, Color, USB 2, Triggerable, Rugged, Lightweight, Industrial Vision Camera With a C Mount and Tripod Adapter It is Designed for Inspection, Instrumentation,

More information

Value cameras. ١ GE Security EMEA Distribution CCTV Cameras

Value cameras. ١ GE Security EMEA Distribution CCTV Cameras Value cameras ١ GE Security Value cameras AR-162C/163C General purpose BW camera 420TVL, 0.1lux 1/3 CCD sensor S/N ratio of 48dB Electronic shutter from 1/50sec to 1/100.000sec Gamma Correction 0.45 Back

More information

SONY FCB - EH6300/4300

SONY FCB - EH6300/4300 IVS-HDMI-12 IVS-SDI-12 HD Interface Boards With SONY FCB - EH6300/4300 USER Manual IVS Imaging LLC., 101 Wrangler Dr. S201, Coppell TX 75019 Tel: 469-635-6810 Page 1 IVS-HDMI-12 LVDS to HDMI Introduction:

More information

1. INTRODUCTION 2. OVERVIEW

1. INTRODUCTION 2. OVERVIEW 1. INTRODUCTION As computers grow and evolve, so do the tools for inputting information into computers. Ports are holes in computers where one can connect various external devices such as mice, keyboards,

More information