tekdxfxsl FibreXtreme I/O Interface

Size: px
Start display at page:

Download "tekdxfxsl FibreXtreme I/O Interface"

Transcription

1 RACEway/RACE++ I/O Controllers tekdxfxsl FibreXtreme I/O Interface User s Manual TEK/TM February 2002

2 TEK Microsystems has made every effort to ensure that this document is accurate and complete. However, TEK reserves the right to make changes and improvements to the products described in this document at any time and without notice. This product is covered by a limited warranty that is described in the manual. Other than the stated limited warranty, TEK disclaims all other warranties, including the warranties of merchantability and of fitness for a particular purpose. In the event of a failure of the hardware or software described in this document, TEK s obligation is limited to repair or replacement of the defective item, or, if the item cannot be repaired or replaced, a refund of the purchase price for the item. TEK assumes no liability arising out of the application or use of the hardware or software, and assumes no responsibility for direct, indirect, incidental or consequential damages of any kind. The electronic equipment described in this document generates, uses, and can radiate radio frequency energy. Operation of this equipment in a residential area is likely to cause radio interference, in which case the user, at his own expense, will be required to take whatever measures may be required to correct the interference. TEK Microsystems products are not authorized for use as critical components in life support devices or systems without the express written agreement of an officer of TEK Microsystems. This document is Copyright , TEK Microsystems, Incorporated. All Rights Reserved. PowerRACE and tekdx are trademarks of TEK Microsystems, Incorporated. RACE, RACE++ and MC/OS are trademarks of Mercury Computer Systems, Inc. FibreXtreme is a trademark of Systran Corporation. VxWorks and Tornado are registered trademarks of Wind River Software, Inc. Other trademarks used are owned by their respective manufacturers. Document ordering code and release information: TEK/TM February 2002

3 Table of Contents Introduction...1 System Requirements...1 Supported Modules...1 Installation...2 Client Installation...2 Server Installation...2 Hardware Installation...2 Known Limitations...3 Client Functions...4 Open/Close Functions...5 tekdxfxslopen( )...6 tekdxfxslclose( )...7 Information Functions...8 tekdxfxslgetmoduleid( )...9 tekdxfxslgetdriverid( )...10 tekdxfxslgetmoduleinfo( )...11 Configuration Functions...12 tekdxfxslrxgetparms( )...13 tekdxfxslrxsetparms( )...14 tekdxfxsltxgetparms( )...15 tekdxfxsltxsetparms( )...16 Device Configurations...17 Systran FibreXtreme SL Systran FibreXtreme SL

4 Introduction This document describes the configuration and use of the tekdxfxsl client-server software for implementing streaming VITA 17.1 FibreXtreme I/O interfaces in RACEway and RACE++ systems. System Requirements The tekdxfxsl client software requires the following environment: Mercury PowerPC running MC/OS. The tekdxfxsl server software requires the following environment: PowerRACE-1 or 2 controller card. Supported Modules The tekdxfxsl software supports the following PMC modules: Systran FibreXtreme SL100 Data Link PMC Systran FibreXtreme SL240 Data Link PMC Page 1

5 Installation The tekdxfxsl software consists of two separate software modules: The client software is a library of callable functions that are linked with the user application and executed on the client. The server software is a VxWorks program that is installed on a PowerRACE I/O controller card. In addition to the installation of the software, the user must also install the PowerRACE card into the target system and add the PowerRACE card into the configuration file used by MC/OS to identify hardware elements of the system. Each phase of installation is described below. Client Installation The tekdxfxsl client software consists of an object library and associated header files that are copied to the MC/OS directories on the development host. The user application can perform tekdxfxsl calls by #include ing the tekdx.h and tekdxfxsl.h header files and linking the object library with the user application. Server Installation The tekdxfxsl server firmware consists of a binary image that is installed in FLASH memory on the PowerRACE card. The procedure for software installation is described in the PowerRACE User s Manual. Hardware Installation The PowerRACE card that is being used as a tekdx server consists of a number of RACEway nodes and an onboard RACEway crossbar. Some of the RACEway nodes provide memory buffers and some of the RACEway nodes provide the tekdx servers. Each processor is an independent tekdx server. In the MC/OS configuration database, the PowerRACE card is defined as several raw RACEway nodes, each of which is given a user-assigned name. The name of the tekdx processor node is the name that is used when opening a tekdx connection to a server. Page 2

6 Known Limitations The current implementation has the following limitations: The server-side software does not properly handle multiple attach requests. The user must ensure that only one CE and process is attached to the server at a time. Please review the README and CHANGES files in the software distribution for more up-to-date information about the current software release. Page 3

7 Client Functions The tekdxfxsl client software is a software layer that is built on top of the tekdx client-server software architecture. All of the tekdxfxsl software functions are essentially simplified versions of underlying tekdx calls. The user application can use tekdxfxsl routines, or can simply use the underlying tekdx calls directly. Using the tekdxfxsl interface involves a number of tradeoffs of performance vs. portability: The tekdx API is more portable than tekdxfxsl for different types of I/O interface hardware. If the user application is written in terms of tekdx calls alone, the application will require very little modification to move from one I/O device to another (i.e. HOTLink to FibreChannel, for example). The tekdxfxsl API provides more type checking and better access to FXSL-specific data structures. For some configuration operations, FXSL-specific data structures are required and the tekdxfxsl interface provides a more controlled interface to those data structures (i.e. tekdxfxslrxgetparms( ), which takes a pointer to a TEKDX_FXSL_PARMS structure instead of a tekdx_dev_control( ) call which takes a typeless pointer). The tekdxfxsl functions add a very small amount of processing time due to the extra function call layer. All of the tekdxfxsl functions are associated with configuration and setup operations. To keep the actual data transfer as generic and high performance as possible, data transfer is accomplished using the standard tekdx functions: typically, tekdx_create( ), tekdx_copy( ) and tekdx_start( ). The tekdxfxsl functions are divided into the following groups: Open/close. These functions open and close tekdx streams between the client node and the tekdx server where the FXSL device resides. Information functions. These functions provide mechanisms for the client to determine the type and model of hardware and software installed on the tekdx server. Configuration functions. These functions provide the ability to get and set the hardware configuration parameters of the FXSL device. Each group of functions is described in the following sections. Page 4

8 Open/Close Functions The tekdxfxsl client software provides functions to open and close the tekdx stream associated with a specific FXSL device. The open/close functions are: tekdxfxslopen. This function opens an I/O stream to the FXSL device. tekdxfxslclose. This function closes an I/O stream to the FXSL device. The tekdx stream must be opened prior to performing any other operations on the stream. Once the stream is opened, the user may retrieve information about the installed hardware and software, configure the FXSL device, and transfer data between RACEway Shared Memory Buffers (SMBs) and the FXSL device. When all operations are completed, the user software should close the tekdx stream. After the stream is closed, no further tekdx operations are valid until the stream is reopened. These functions are described in more detail below. Page 5

9 tekdxfxslopen( ) NAME tekdxfxslopen( ) Open a tekdx stream to a FXSL device. SYNOPSIS long tekdxfxslopen ( const char *devname, TEKDX_handle *dxp ); DESCRIPTION This function creates a connection to a FXSL hardware device managed by the tekdx server specified by devname. The devname argument consists of two parts, separated by a :. The first part, which is mandatory, specifies the name of the tekdx server node in the MC/OS configuration file. The second part, which is optional, specifies the device to be opened. For the tekdxfxsl server, the default device name is fxsl. This routine performs a tekdx_dev_attach( ) followed by a tekdx_dev_open( ). If successful, a handle to the tekdx stream is returned in *dxp. INCLUDE FILES tekdx.h, tekdxfxsl.h RETURNS TEKDX_SUCCESS, or TEKDX_ERROR if the operation is not successful. SEE ALSO tekdx_dev_attach( ), tekdx_dev_open( ) CAUTIONS The current implementation does not properly handle multiple connections to a single server. Page 6

10 tekdxfxslclose( ) NAME tekdxfxslclose( ) Close the tekdx stream. SYNOPSIS long tekdxfxslclose ( TEKDX_handle dx ); DESCRIPTION This routine closes the tekdx stream specified by dx and detaches the client from the tekdx server. The semantics of closing a tekdx stream are device-dependent. For all tekdx devices, the server is required to ensure that all queued data is flushed out to the device. Additional processing may be performed for specific devices. This function blocks the calling task until the operation is completed. It is not appropriate for inner-loop code. This function is equivalent to calling tekdx_dev_close( ) followed by tekdx_dev_detach( ). In the current release, the calling task is responsible for recovering memory and other resources that have been allocated through lower-level tekdx calls (i.e. tekdx_copy, tekdx_group). Future releases are expected to automate the cleanup process. INCLUDE FILES tekdx.h, tekdxfxsl.h RETURNS TEKDX_SUCCESS, or TEKDX_ERROR if the operation is not successful. SEE ALSO tekdx_dev_close( ), tekdx_dev_detach( ) CAUTIONS This routine should not be invoked if data transfers are currently in progress. Page 7

11 Information Functions The tekdxfxsl client software provides functions to retrieve configuration and identification information about the tekdx server, hardware driver software, and the installed hardware module. The information functions are: tekdxfxslgetmoduleid. This function retrieves the FXSL hardware module identification information (i.e., the type of module installed). This is always SL240 in this release because there is currently no way to distinguish between the SL100 and SL240 modules. tekdxfxslgetdriverid. This function retrieves the FXSL server/driver version information. It is returned as a string in x.y.z format (e.g., ). tekdxfxslgetmoduleinfo. This function retrieves the FXSL module information. The low-level Systran driver does not provide anything useful about the hardware module, so the module information structure contains only a placeholder. These functions are described in more detail below. Page 8

12 tekdxfxslgetmoduleid( ) NAME tekdxfxslgetmoduleid( ) Get module ID string. SYNOPSIS long tekdxfxslgetmoduleid ( TEKDX_handle dx, char *buf, int maxlen ); DESCRIPTION This function retrieves the hardware module identification information for the tekdx stream specified by dx. The module ID information is copied into the string buffer at *buf with a maximum length of maxlen. This is always SL240 in this release. This function blocks the calling task until the operation is completed. It is not appropriate for inner-loop code. This function is equivalent to calling tekdx_dev_control( ) with a command type of TEKDX_DEV_IOCTL_GET_MODULE_ID. INCLUDE FILES tekdx.h, tekdxfxsl.h RETURNS TEKDX_SUCCESS, or TEKDX_ERROR if the operation is not successful. SEE ALSO tekdx_dev_control( ) CAUTIONS None Page 9

13 tekdxfxslgetdriverid( ) NAME tekdxfxslgetdriverid( ) Get the driver identification string for the server. SYNOPSIS long tekdxfxslgetdriverid ( TEKDX_handle dx, char *buf, int maxlen ); DESCRIPTION This function retrieves the tekdx server and hardware driver version information for the tekdx stream specified by dx. The version information is copied into the string buffer at *buf with a maximum length of maxlen. The version string is in x.y.z format (e.g., ). This function blocks the calling task until the operation is completed. It is not appropriate for inner-loop code. This function is equivalent to calling tekdx_dev_control( ) with a command type of TEKDX_DEV_IOCTL_GET_DRIVER_ID. INCLUDE FILES tekdx.h, tekdxfxsl.h RETURNS TEKDX_SUCCESS, or ERROR if the operation is not successful. SEE ALSO tekdx_dev_control( ) CAUTIONS None Page 10

14 tekdxfxslgetmoduleinfo( ) NAME tekdxfxslgetmoduleinfo( ) Get module information. SYNOPSIS long tekdxfxslgetmoduleinfo ( TEKDX_handle dx, TEKDX_FXSL_INFO *infop ); DESCRIPTION This routine retrieves the module information structure from the module associated with the tekdx stream specified by dx. The module information structure is copied into the structure pointed at by *infop. The module information structure does not contain anything useful in this release. This function blocks the calling task until the operation is completed. It is not appropriate for inner-loop code. This function is equivalent to calling tekdx_dev_control( ) with a command type of TEKDX_DEV_IOCTL_GET_MODULE_INFO. INCLUDE FILES tekdx.h, tekdxfxsl.h RETURNS TEKDX_SUCCESS, or TEKDX_ERROR if the operation is not successful. SEE ALSO tekdx_dev_control() CAUTIONS None Page 11

15 Configuration Functions The tekdxfxsl client software provides functions to get and set the hardware configuration of the FXSL device. The tekdxfxsl software defines a common data structure that is used for hardware configuration of all supported FXSL devices. The parameter data structure is defined as follows: typedef struct { /* driver configuration parameters */ int use_flow_control; /* NZ to enable */ int convert_dsync; /* NZ to enable */ int halt_on_link_errors; /* NZ to enable */ int allow_qing_on_lerror; /* NZ to enable */ int usecrc; /* NZ to enable */ /* transfer parameters */ int usesync; /* NZ to enable */ int swapbytes; /* NZ to enable */ } TEKDX_FXSL_PARMS; Please refer to the FibreXtreme SL100/SL240 API Guide for detailed information on the above options. To support future versions of the tekdxfxsl software, the recommended approach for hardware configuration is to get the parameter state, modify the desired fields by name, and then set the parameter state. This allows the user software to automatically adapt to future releases of the tekdxfxsl software that may include additional parameter fields to support new FXSL devices. The tekdxfxsl software provides four functions to get and set the configuration parameter state: tekdxfxslrxgetparms. This function retrieves the current FXSL parameter state for the receive stream (from the external input to the RACEway). tekdxfxslrxsetparms. This function sets the current FXSL parameter state for the receive stream. tekdxfxsltxgetparms. This function retrieves the current FXSL parameter state for the transmit stream (from the RACEway to the external output). tekdxfxsltxsetparms. This function sets the current FXSL parameter state for the transmit stream. Each of these functions is described in more detail below. Page 12

16 tekdxfxslrxgetparms( ) NAME tekdxfxslrxgetparms( ) Get the RX parameter state for the FXSL device. SYNOPSIS long tekdxfxslrxgetparms ( TEKDX_handle dx TEKDX_FXSL_PARMS *parms ); DESCRIPTION This routine retrieves the current parameter state for the tekdx receive stream specified by dx. The parameter state is copied into the *parms data structure. This function is valid even if the FXSL device does not support a receive stream. This function blocks the calling task until the operation is completed. It is not appropriate for inner-loop code. This function is equivalent to calling tekdx_dev_control( ) with a command type of TEKDX_DEV_IOCTL_RX_GET_PARMS. INCLUDE FILES tekdx.h, tekdxfxsl.h RETURNS TEKDX_SUCCESS, or TEKDX_ERROR if the operation is not successful. SEE ALSO tekdx_dev_control( ), tekdxfxslrxsetparms( ) CAUTIONS None Page 13

17 tekdxfxslrxsetparms( ) NAME tekdxfxslrxsetparms( ) Set the RX parameter state for the FXSL device. SYNOPSIS long tekdxfxslrxsetparms ( TEKDX_handle dx TEKDX_FXSL_PARMS *parms ); DESCRIPTION This routine sets the current parameter state for the tekdx receive stream specified by dx to the state specified by the *parms data structure. The parameter state is updated and the new parameter state is copied back into *parms. This function is valid even if the FXSL device does not support a receive stream; the configuration is just ignored. This function blocks the calling task until the operation is completed. It is not appropriate for inner-loop code. This function is equivalent to calling tekdx_dev_control( ) with a command type of TEKDX_DEV_IOCTL_RX_SET_PARMS. INCLUDE FILES tekdx.h, tekdxfxsl.h RETURNS TEKDX_SUCCESS, or TEKDX_ERROR if the operation is not successful. SEE ALSO tekdx_dev_control( ), tekdxfxslrxgetparms( ) CAUTIONS This routine should not be invoked if data transfers are currently in progress. Page 14

18 tekdxfxsltxgetparms( ) NAME tekdxfxsltxgetparms( ) Get the TX parameter state for the FXSL device. SYNOPSIS long tekdxfxsltxgetparms ( TEKDX_handle dx TEKDX_FXSL_PARMS *parms ); DESCRIPTION This routine retrieves the current parameter state for the tekdx transmit stream specified by dx. The parameter state is copied into the *parms data structure. This function is valid even if the FXSL device does not support a transmit stream. This function blocks the calling task until the operation is completed. It is not appropriate for inner-loop code. This function is equivalent to calling tekdx_dev_control( ) with a command type of TEKDX_DEV_IOCTL_TX_GET_PARMS. INCLUDE FILES tekdx.h, tekdxfxsl.h RETURNS TEKDX_SUCCESS, or TEKDX_ERROR if the operation is not successful. SEE ALSO tekdx_dev_control( ), tekdxfxsltxsetparms( ) CAUTIONS None Page 15

19 tekdxfxsltxsetparms( ) NAME tekdxfxsltxsetparms( ) Set the TX parameter state for the FXSL device. SYNOPSIS long tekdxfxsltxsetparms ( TEKDX_handle dx TEKDX_FXSL_PARMS *parms ); DESCRIPTION This routine sets the current parameter state for the tekdx transmit stream specified by dx to the state specified by the *parms data structure. The parameter state is updated and the new parameter state is copied back into *parms. This function is valid even if the FXSL device does not support a transmit stream; the configuration is just ignored. This function blocks the calling task until the operation is completed. It is not appropriate for inner-loop code. This function is equivalent to calling tekdx_dev_control( ) with a command type of TEKDX_DEV_IOCTL_TX_SET_PARMS. INCLUDE FILES tekdx.h, tekdxfxsl.h RETURNS TEKDX_SUCCESS, or TEKDX_ERROR if the operation is not successful. SEE ALSO tekdx_dev_control( ), tekdxfxsltxgetparms( ) CAUTIONS This routine should not be invoked if data transfers are currently in progress. Page 16

20 Device Configurations The tekdxfxsl software provides an abstract interface to a family of PMC modules that generically provide FibreXtreme functionality. This section of the manual defines the capabilities and specific limitations of each supported PMC module. This material is intended as an overview only; please consult the PMC s documentation for current hardware capabilities and features. Systran FibreXtreme SL Gbps VITA 17.1 FibreXtreme Interface Supports receive stream, raw mode. Supports transmit stream, raw mode. Supports byte-swapping. Systran FibreXtreme SL Gbps VITA 17.1 FibreXtreme Interface Supports receive stream, raw mode. Supports transmit stream, raw mode. Supports byte-swapping. Page 17

RACEway Products. RACEway Test Adapter (RTA-S-2 & RTA-D-2) User s Manual RevB

RACEway Products. RACEway Test Adapter (RTA-S-2 & RTA-D-2) User s Manual RevB RACEway Products RACEway Test Adapter (RTA-S-2 & RTA-D-2) User s Manual RevB TEK/TM-307B June 2000 TEK Microsystems has made every effort to ensure that this manual is accurate and complete. However, TEK

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PB3Oseh Driver Documentation Win32 Driver Model Revision A Corresponding

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PmcB2B Driver Documentation Win32 Driver Model Revision A Corresponding

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PcBis3 & Bis3Chan Driver Documentation Win32 Driver Model Revision

More information

DYNAMIC ENGINEERING 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est

DYNAMIC ENGINEERING 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est DYNAMIC ENGINEERING 150 DuBois, Suite C Santa Cruz, CA 95060 (831) 457-8891 Fax (831) 457-4793 www.dyneng.com sales@dyneng.com Est. 1988 alt_atp Linux Device Driver Documentation Revision A Corresponding

More information

DYNAMIC ENGINEERING 150 DuBois St. Suite C, Santa Cruz, CA Fax Est.

DYNAMIC ENGINEERING 150 DuBois St. Suite C, Santa Cruz, CA Fax Est. DYNAMIC ENGINEERING 150 DuBois St. Suite C, Santa Cruz, CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 PCIeBiSerialDb37-LM9 Linux Driver lm9_base & lm9_chan Linux

More information

DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA Fax Est.

DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA Fax Est. DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 IpTest WDF Driver Documentation For the IP-Test module Developed

More information

PHLnkBase & PHLnkChan

PHLnkBase & PHLnkChan 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 PHLnkBase & PHLnkChan WDF Driver Documentation For the Six-Channel

More information

PcieAltBase & PcieAltChan

PcieAltBase & PcieAltChan 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 PcieAltBase & PcieAltChan WDF Driver Documentation For the

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 User Manual PCI LVDS 8R Driver Documentation Revision A Corresponding

More information

& WizChan. Driver Documentation

& WizChan. Driver Documentation DYNAMIC ENGINEERING 150 DuBois St. Suite C, Santa Cruz, CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 PmcWiz & WizChan Driver Documentation Win32 Driver Model

More information

Small Logger File System

Small Logger File System Small Logger File System (http://www.tnkernel.com/) Copyright 2011 Yuri Tiomkin Document Disclaimer The information in this document is subject to change without notice. While the information herein is

More information

DYNAMIC ENGINEERING 150 DuBois Suite C Santa Cruz, CA (831) Fax (831) Est.

DYNAMIC ENGINEERING 150 DuBois Suite C Santa Cruz, CA (831) Fax (831) Est. 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 ip_gen Linux Driver Documentation Revision A ip_gen Linux

More information

SL100/SL240 Software Installation Manual for Tornado 2.2 and VxWorks Using the PCI, PMC, or CPCI Cards. Document No. F-T-MI-VWXXGS21-A-0-A5

SL100/SL240 Software Installation Manual for Tornado 2.2 and VxWorks Using the PCI, PMC, or CPCI Cards. Document No. F-T-MI-VWXXGS21-A-0-A5 SL100/SL240 Software Installation Manual for Tornado 2.2 and VxWorks 5.31-5.5 Using the PCI, PMC, or CPCI Cards Document No. F-T-MI-VWXXGS21-A-0-A5 FOREWORD The information in this document has been carefully

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PciLvds2R/T Driver Documentation Win32 Driver Model Revision A

More information

H-UC232S USB Serial Converter

H-UC232S USB Serial Converter H-UC232S USB Serial Converter FCC Warning This equipment has been tested and found to comply with the regulations for a Class B digital device, pursuant to Part 15 of the FCC Rules. These limits are designed

More information

spwr_base & spwr_chan

spwr_base & spwr_chan DYNAMIC ENGINEERING 150 DuBois St. Suite C, Santa Cruz, CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 spwr_base & spwr_chan Linux Driver Documentation Manual Revision

More information

DYNAMIC ENGINEERING 150 DuBois St Suite 3, Santa Cruz CA Fax Est.

DYNAMIC ENGINEERING 150 DuBois St Suite 3, Santa Cruz CA Fax Est. DYNAMIC ENGINEERING 150 DuBois St Suite 3, Santa Cruz CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 User Manual PCI-Altera-485 Driver Documentation CSC Version

More information

DYNAMIC ENGINEERING 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est.

DYNAMIC ENGINEERING 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est. 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 IpGeneric WDF Driver Documentation Developed with Windows

More information

SMART SWITCH. User s Manual. This product is to be used with the MySmartBlinds automation kit.

SMART SWITCH. User s Manual. This product is to be used with the MySmartBlinds automation kit. TM SMART SWITCH User s Manual This product is to be used with the MySmartBlinds automation kit. TABLE OF CONTENTS SAFETY INFORMATION 4 PARTS IDENTIFIER 6 ABOUT THE SMART SWITCH 6 INSTALLATION 7 PAIRING

More information

FPGA Solutions: Modular Architecture for Peak Performance

FPGA Solutions: Modular Architecture for Peak Performance FPGA Solutions: Modular Architecture for Peak Performance Real Time & Embedded Computing Conference Houston, TX June 17, 2004 Andy Reddig President & CTO andyr@tekmicro.com Agenda Company Overview FPGA

More information

APPLICATION NOTE 9.15

APPLICATION NOTE 9.15 APPLICATION NOTE 9.15 U2DP Driver Development Specification Rev. 02/14/2002 80 Arkay Drive Hauppauge, NY 11788 (631) 435-6000 FAX (631) 273-3123 Copyright SMSC 2004. All rights reserved. Circuit diagrams

More information

SL100/SL240 API Guide. Document No. F-T-ML-S2AP1###-A-0-A9

SL100/SL240 API Guide. Document No. F-T-ML-S2AP1###-A-0-A9 SL100/SL240 API Guide Document No. F-T-ML-S2AP1###-A-0-A9 FOREWORD The information in this document has been carefully checked and is believed to be accurate; however, no responsibility is assumed for

More information

FibreXtreme F-T-MI-WMXXGS31-A-0-A1

FibreXtreme F-T-MI-WMXXGS31-A-0-A1 FibreXtreme SL100/SL240 Software Installation Manual for x86 and x64 Platforms Running Windows Vista, Windows 7, Windows 8, Windows Server 2003, Windows Server 2008, Windows Server 2012 Using PCI, PMC

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PciLvds8R/T Driver Documentation Win32 Driver Model Revision A

More information

IP-429-II ARINC 429 Interface 1-4 Transmitters 2-8 Receivers

IP-429-II ARINC 429 Interface 1-4 Transmitters 2-8 Receivers DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 IP-429-II ARINC 429 Interface 1-4 Transmitters 2-8 Receivers

More information

USB-A to Serial Cable

USB-A to Serial Cable 26-949 User s Guide 6-Foot (1.82m) USB-A to Serial Cable Please read this user s guide before using your new cable. 2/2 Package contents USB-A to Serial Cable User s Guide Driver CD Quick Start Features

More information

DYNAMIC ENGINEERING 150 DuBois, Suite C, Santa Cruz, CA Fax Est

DYNAMIC ENGINEERING 150 DuBois, Suite C, Santa Cruz, CA Fax Est 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 IpPlr Driver Documentation Win32 Driver Model Revision B Corresponding

More information

DYNAMIC ENGINEERING 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est.

DYNAMIC ENGINEERING 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est. 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 Bae9Base & Bae9Chan Driver Documentation Developed with Windows

More information

DYNAMIC ENGINEERING. 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est.

DYNAMIC ENGINEERING. 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est. 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 PMC Biserial S311 Software Manual Driver Documentation Developed

More information

500 Business Center Drive Pittsburgh, PA USA CAGE 1BGJ7. SwitchMaster R5000 Series Ultra-Compact Ganged A/B Switching System

500 Business Center Drive Pittsburgh, PA USA CAGE 1BGJ7. SwitchMaster R5000 Series Ultra-Compact Ganged A/B Switching System Market Central www.secureswitch.com 500 Business Center Drive Pittsburgh, PA 15205 USA 412.494.2800 CAGE 1BGJ7 SwitchMaster R5000 Series Ultra-Compact Ganged A/B Switching System July, 2014 COMPLETE 2

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PB3Hw1 Driver Documentation Win32 Driver Model Revision A Corresponding

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 AlteraATP Driver Documentation Win32 Driver Model Revision C Corresponding

More information

ccpmc Parallel TTL BA18 Base & Channel

ccpmc Parallel TTL BA18 Base & Channel DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA 95060 (831) 457-8891 Fax (831) 457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 ccpmc Parallel TTL BA18 Base & Channel Driver Documentation

More information

SL100/SL240 Software Installation Manual for x86 and PowerPC Hosts Running Linux 2.4 or 2.6 Using PCI/PMC/CPCI Cards

SL100/SL240 Software Installation Manual for x86 and PowerPC Hosts Running Linux 2.4 or 2.6 Using PCI/PMC/CPCI Cards SL100/SL240 Software Installation Manual for x86 and PowerPC Hosts Running Linux 2.4 or 2.6 Using PCI/PMC/CPCI Cards Document No. F-T-MI-LIXXDS21-A-0-A6 FOREWORD The information in this document has been

More information

PMC-BiSerial-III SDLC 8-Channel SDLC Interface

PMC-BiSerial-III SDLC 8-Channel SDLC Interface DYNAMIC ENGINEERING 150 DuBois St. Suite C Santa Cruz CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 Software User s Guide (Linux) PMC-BiSerial-III SDLC 8-Channel

More information

Kanguru QSSD External SSD USB3.0 User Manual

Kanguru QSSD External SSD USB3.0 User Manual Copyright 2012, All Rights Reserved. Kanguru QSSD External SSD USB3.0 User Manual Notices and Information NOTICES AND INFORMATION Please be aware of the following points before using your Kanguru QSSD

More information

LogiCORE IP 3GPP LTE Turbo Encoder v1.0 Bit-Accurate C Model. 3GPP LTE Turbo. [optional] UG490 (v1.0) April 25, 2008 [optional]

LogiCORE IP 3GPP LTE Turbo Encoder v1.0 Bit-Accurate C Model. 3GPP LTE Turbo. [optional] UG490 (v1.0) April 25, 2008 [optional] LogiCORE IP 3GPP LTE Turbo Encoder v1.0 Bit-Accurate C Model LogiCORE IP 3GPP LTE Turbo Encoder v1.0 [Guide User Guide Subtitle] [optional] [optional] R R Xilinx is disclosing this user guide, manual,

More information

Intel Active Management Technology Release 1.0 Host Interface Design Guide

Intel Active Management Technology Release 1.0 Host Interface Design Guide Intel Active Management Technology Release 1.0 Host Interface Design Guide Version 4.0.0 February 2008 Information in this document is provided in connection with Intel products. No license, express or

More information

DYNAMIC ENGINEERING 150 DuBois, Suite 3 Santa Cruz, CA (831) Fax (831) Est

DYNAMIC ENGINEERING 150 DuBois, Suite 3 Santa Cruz, CA (831) Fax (831) Est DYNAMIC ENGINEERING 150 DuBois, Suite 3 Santa Cruz, CA 95060 (831) 457-8891 Fax (831) 457-4793 www.dyneng.com sales@dyneng.com Est. 1988 PciAlt Driver Documentation Win32 Driver Model Revision D Corresponding

More information

ExpressCard Serial Card

ExpressCard Serial Card ExpressCard 16950 Serial Card 1 Port ExpressCard 16950 Serial Card 2 Port ExpressCard 16950 Serial Card EC1S950 EC2S950 Actual product may vary from photo FCC Compliance Statement This equipment has been

More information

Product Documentation

Product Documentation Product Documentation Emanate PowerPath TM TempTag PPT-300 Date: April 12, 2016 Document Number: PPT200-001 R1.4 Emanate Wireless, Inc. 11145 Windsor Rd. Ijamsville, MD 21754 Telephone: 844-EMANATE Email:

More information

TPMC500-SW-42. VxWorks Device Driver. User Manual. The Embedded I/O Company. 32 Channel 12 Bit ADC. Version 2.0.x. Issue 2.0.

TPMC500-SW-42. VxWorks Device Driver. User Manual. The Embedded I/O Company. 32 Channel 12 Bit ADC. Version 2.0.x. Issue 2.0. The Embedded I/O Company TPMC500-SW-42 VxWorks Device Driver 32 Channel 12 Bit ADC Version 2.0.x User Manual Issue 2.0.0 October 2004 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 e-mail: info@tews.com 25469 Halstenbek

More information

ComAPI+ API Documentation

ComAPI+ API Documentation [01.2017] ComAPI+ API Documentation 30515ST10841A Rev. 4 2017-07-20 Mod. 0806 SPECIFICATIONS ARE SUBJECT TO CHANGE WITHOUT NOTICE NOTICES LIST While reasonable efforts have been made to assure the accuracy

More information

TDRV006-SW-42. VxWorks Device Driver. 64 Digital Inputs/Outputs (Bit I/O) Version 4.0.x. User Manual. Issue December 2017

TDRV006-SW-42. VxWorks Device Driver. 64 Digital Inputs/Outputs (Bit I/O) Version 4.0.x. User Manual. Issue December 2017 The Embedded I/O Company TDRV006-SW-42 VxWorks Device Driver 64 Digital Inputs/Outputs (Bit I/O) Version 4.0.x User Manual Issue 4.0.0 December 2017 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek,

More information

Pci3Ip, Pci5Ip, Pc104pIp, Pc104p4Ip, cpci2ip, cpci4ip and PcieCar IndustryPack Carrier Device Drivers

Pci3Ip, Pci5Ip, Pc104pIp, Pc104p4Ip, cpci2ip, cpci4ip and PcieCar IndustryPack Carrier Device Drivers 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 Pci3Ip, Pci5Ip, Pc104pIp, Pc104p4Ip, cpci2ip, cpci4ip and

More information

4-In-1-Out / 1-In-4-Out (Reversible) Bitronics Auto Switch. AS-8144B/AS-8441B User's Manual

4-In-1-Out / 1-In-4-Out (Reversible) Bitronics Auto Switch. AS-8144B/AS-8441B User's Manual 4-In-1-Out / 1-In-4-Out (Reversible) Bitronics Auto Switch AS-8144B/AS-8441B User's Manual Read this manual thoroughly and follow the installation procedures carefully to prevent any damage to the unit

More information

3.5 inch Hard Drive Enclosure. Model #: HDE350U. User s Manual

3.5 inch Hard Drive Enclosure. Model #: HDE350U. User s Manual 3.5 inch Hard Drive Enclosure Model #: HDE350U User s Manual 2 Rev. 060811 User s Record: To provide quality customer service and technical support, it is suggested that you keep the following information

More information

3.5 inch Hard Drive Enclosure. User s Manual

3.5 inch Hard Drive Enclosure. User s Manual 3.5 inch Hard Drive Enclosure Model #: HDE355U User s Manual Rev. 060811 User s Record: To provide quality customer service and technical support, it is suggested that you keep the following information

More information

Don t plug me in just yet.

Don t plug me in just yet. Easy Transfer Cable for Windows 7 Don t plug me in just yet. We need to do a few things first to get your computers ready to transfer your files and user accounts. Quick Start Guide F5U279 i 1 Prepare

More information

Product Discontinuation Notice 3M Assorted Japan Sourced Connectors

Product Discontinuation Notice 3M Assorted Japan Sourced Connectors Product Discontinuation Notice 3M Assorted Japan Sourced Connectors Issue Number: 756 Date: March 26, 2010 Product Discontinuance Effective June 1, 2010, 3M will exit a few assorted low volume Japanese

More information

VTR-2000 Evaluation and Product Development Platform. Instruction Sheet SOC Technologies Inc.

VTR-2000 Evaluation and Product Development Platform. Instruction Sheet SOC Technologies Inc. VTR-2000 Evaluation and Product Development Platform Instruction Sheet 2015 SOC Technologies Inc. SOC is disclosing this user manual (the "Documentation") to you solely for use in the development of designs

More information

BLUETOOTH SPEAKER. for ipod/iphone/ipad/android. User s Manual. Item #TA-11BTSP. PC Mac Ultrabook COMPATIBLE BLUETOOTH WIRELESS USB

BLUETOOTH SPEAKER. for ipod/iphone/ipad/android. User s Manual. Item #TA-11BTSP. PC Mac Ultrabook COMPATIBLE BLUETOOTH WIRELESS USB BLUETOOTH SPEAKER for ipod/iphone/ipad/android User s Manual BLUETOOTH WIRELESS PC Mac Ultrabook COMPATIBLE DETACHABLE USB POWER CABLE USB Item #TA-11BTSP Sakar One Year Warranty This warranty covers the

More information

If anything is damaged or missing, contact your dealer.

If anything is damaged or missing, contact your dealer. User Manual ACS-1602 Read this guide thoroughly and follow the installation and operation procedures carefully in order to prevent any damage to the unit and/or any devices that connect to it. This package

More information

Control4/HomeKit Appliance User Manual. User Manual. June Version Varietas Software, LLC.

Control4/HomeKit Appliance User Manual. User Manual. June Version Varietas Software, LLC. Control4/HomeKit Appliance User Manual User Manual June 2017 Version 1.0.3 Varietas Software, LLC http://www.varietassoftware.com/control4 i Control4/HomeKit Appliance Quick Start Document Revisions Date

More information

EVB-USB2640 Evaluation Board Revision A

EVB-USB2640 Evaluation Board Revision A Copyright 2008 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means of illustrating typical applications. Consequently,

More information

Instruction Manual. CT-4 High-Current Transformer

Instruction Manual. CT-4 High-Current Transformer Instruction Manual CT-4 High-Current Transformer 070-6478-02 Copyright Tektronix, Inc. 1987. All rights reserved. Tektronix products are covered by U.S. and foreign patents, issued and pending. Information

More information

Zodiac WX QUICK START GUIDE

Zodiac WX QUICK START GUIDE Zodiac WX QUICK START GUIDE Oct 2017 - Page 1 - Important Information Limited warranty: Northbound Networks warrants that the Zodiac WX will be free from defects in material or workmanship for a period

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PmcPario Driver Documentation Win32 Driver Model Revision A Corresponding

More information

EN-9235TX-32 Quick Installation Guide

EN-9235TX-32 Quick Installation Guide EN-9235TX-32 Quick Installation Guide 09-2012 / v2.0 1 COPYRIGHT Copyright Edimax Technology Co., Ltd. all rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

Stand-Alone-Relay S-A-Relay

Stand-Alone-Relay S-A-Relay DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 sales@dyneng.com www.dyneng.com Est. 1988 User Manual Stand-Alone-Relay S-A-Relay Revision A Corresponding Hardware:

More information

ssj1708 User s Manual Version 1.3 Revised February 2nd, 2009 Created by the J1708 Experts

ssj1708 User s Manual Version 1.3 Revised February 2nd, 2009 Created by the J1708 Experts ssj1708 User s Manual Version 1.3 Revised February 2nd, 2009 Created by the J1708 Experts ssj1708 Protocol Stack License READ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT CAREFULLY BEFORE OPENING

More information

ssi User s Manual Version 1.1 Revised January 7 th, 2009 Created by the ISO Experts

ssi User s Manual Version 1.1 Revised January 7 th, 2009 Created by the ISO Experts ssi15765-2 User s Manual Version 1.1 Revised January 7 th, 2009 Created by the ISO 15765 Experts ssi15765-2 Protocol Stack License READ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT CAREFULLY BEFORE

More information

USB Transfer Cable. for Windows and Mac User s Guide

USB Transfer Cable. for Windows and Mac User s Guide 2604052 User s Guide USB Transfer Cable for Windows and Mac We hope you enjoy your USB Transfer Cable from RadioShack. Please read this user s guide before using your new cable. Package Contents USB Transfer

More information

Microsoft Windows 2016 Mellanox 100GbE NIC Tuning Guide

Microsoft Windows 2016 Mellanox 100GbE NIC Tuning Guide Microsoft Windows 2016 Mellanox 100GbE NIC Tuning Guide Publication # 56288 Revision: 1.00 Issue Date: June 2018 2018 Advanced Micro Devices, Inc. All rights reserved. The information contained herein

More information

CardBus PCI Host Controller Card

CardBus PCI Host Controller Card CARDBUS TO PCI HOST CONTROLLER CardBus PCI Host Controller Card PCI2PCMCIA1 PCI2PCMCIA2 Instruction Guide * Actual product may vary from photo The Professionals Source For Hard-to-Find Computer Parts FCC

More information

PSK Propagation Reporter DLL Documentation 2013-Mar-10 Philip Gladstone

PSK Propagation Reporter DLL Documentation 2013-Mar-10 Philip Gladstone PSK Propagation Reporter DLL Documentation 2013-Mar-10 Philip Gladstone This describes the PSK Propagation Reporter API that is available on Windows and which is provided by

More information

2.5/3.5 SATA HD Docking Station

2.5/3.5 SATA HD Docking Station SATADOCKU2 SATADOCKU2E SATADOCK22UE 2.5/3.5 SATA HD Docking Station FCC Compliance Statement This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to

More information

INTRODUCTION TO OPENCL TM A Beginner s Tutorial. Udeepta Bordoloi AMD

INTRODUCTION TO OPENCL TM A Beginner s Tutorial. Udeepta Bordoloi AMD INTRODUCTION TO OPENCL TM A Beginner s Tutorial Udeepta Bordoloi AMD IT S A HETEROGENEOUS WORLD Heterogeneous computing The new normal CPU Many CPU s 2, 4, 8, Very many GPU processing elements 100 s Different

More information

SmartStack SAE J1939 Communication Module

SmartStack SAE J1939 Communication Module User Manual for HE800JCM205 SmartStack SAE J1939 Communication Module 03 December 2002 PREFACE 03 DEC 2002 PAGE 3 PREFACE This manual explains how to use SmartStack SAE J1939 Communication Modules. Copyright

More information

SATA Hard Drive Enclosure

SATA Hard Drive Enclosure S2510PESAT Instruction Manual SATA Hard Drive Enclosure 2.5 Silver Power esata to SATA Hard Drive Enclosure with One Touch Backup FCC Compliance Statement This equipment has been tested and found to comply

More information

FCC Warning. CE Mark Warning. VCCI Mark Warning

FCC Warning. CE Mark Warning. VCCI Mark Warning FCC Warning This equipment has been tested and found to comply with the regulations for a Class B digital device, pursuant to Part 15 of the FCC Rules. These limits are designed to provide reasonable protection

More information

ATECC108/ATSHA204 USER GUIDE. Atmel Firmware Library. Features. Introduction

ATECC108/ATSHA204 USER GUIDE. Atmel Firmware Library. Features. Introduction ATECC108/ATSHA204 Atmel Firmware Library USER GUIDE Features Layered and Modular Design Compact and Optimized for 8-bit Microcontrollers Easy to Port Supports I 2 C and Single-Wire Communication Distributed

More information

Windows Device Driver and API Reference Manual

Windows Device Driver and API Reference Manual Windows Device Driver and API Reference Manual 797 North Grove Rd, Suite 101 Richardson, TX 75081 Phone: (972) 671-9570 www.redrapids.com Red Rapids Red Rapids reserves the right to alter product specifications

More information

USER GUIDE EDBG. Description

USER GUIDE EDBG. Description USER GUIDE EDBG Description The Atmel Embedded Debugger (EDBG) is an onboard debugger for integration into development kits with Atmel MCUs. In addition to programming and debugging support through Atmel

More information

Short Notes of CS201

Short Notes of CS201 #includes: Short Notes of CS201 The #include directive instructs the preprocessor to read and include a file into a source code file. The file name is typically enclosed with < and > if the file is a system

More information

HDMI Optical Extender USER MANUAL VE882 / VE892

HDMI Optical Extender USER MANUAL VE882 / VE892 HDMI Optical Extender USER MANUAL VE882 / VE892 EMC Information FEDERAL COMMUNICATIONS COMMISSION INTERFERENCE STATEMENT: This equipment has been tested and found to comply with the limits for a Class

More information

If anything is damaged or missing, contact your dealer.

If anything is damaged or missing, contact your dealer. User Manual CS-64A Read this guide thoroughly and follow the installation and operation procedures carefully in order to prevent any damage to the unit and/or any devices that connect to it. This package

More information

Introduction. Package Contents. System Requirements

Introduction. Package Contents. System Requirements VP6230 Page 1 Page 2 Introduction Congratulations on your purchase of the Blu-Link Folding Bluetooth Keyboard. This innovative portable folding keyboard connects via Bluetooth technology to provide a wireless

More information

3M Serial Advanced Technology Attachment (SATA) Connector Signal Plug, Boardmount, Surface Mount Right Angle and PTH Vertical

3M Serial Advanced Technology Attachment (SATA) Connector Signal Plug, Boardmount, Surface Mount Right Angle and PTH Vertical 7-position supports motherboard signal requirements EMLB contacts for hot swap Blind mate polarization for easy cable attach Through-hole and surface mount options PCB retention clip aids manufacturing

More information

Trimble S6 and SPS700 Total Station Firmware

Trimble S6 and SPS700 Total Station Firmware Trimble S6 and SPS700 Total Station Firmware Release Notes Introduction Upgrading from a previous version Using Trimble S6/SPS700 firmware with other Trimble products New features/enha ncements Changes

More information

Redirector User Guide

Redirector User Guide Redirector User Guide Revision B November 04, 2005 Part Number GC-800-235 Copyright and Trademark Copyright 2004, Grid Connect, Inc. All rights reserved. No part of this manual may be reproduced or transmitted

More information

IC-485S /IC-485SI. If anything is damaged or missing, contact your dealer.

IC-485S /IC-485SI. If anything is damaged or missing, contact your dealer. User Manual IC-485S /IC-485SI Read this guide thoroughly and follow the installation and operation procedures carefully in order to prevent any damage to the units and/or any devices that connect to them.

More information

CS201 - Introduction to Programming Glossary By

CS201 - Introduction to Programming Glossary By CS201 - Introduction to Programming Glossary By #include : The #include directive instructs the preprocessor to read and include a file into a source code file. The file name is typically enclosed with

More information

Quadros. RTXC Kernel Services Reference, Volume 1. Levels, Threads, Exceptions, Pipes, Event Sources, Counters, and Alarms. Systems Inc.

Quadros. RTXC Kernel Services Reference, Volume 1. Levels, Threads, Exceptions, Pipes, Event Sources, Counters, and Alarms. Systems Inc. Quadros Systems Inc. RTXC Kernel Services Reference, Volume 1 Levels, Threads, Exceptions, Pipes, Event Sources, Counters, and Alarms Disclaimer Quadros Systems, Inc. makes no representations or warranties

More information

FMC-MCM-1000 Evaluation and Product Development Platform. Instruction Sheet SOC Technologies Inc.

FMC-MCM-1000 Evaluation and Product Development Platform. Instruction Sheet SOC Technologies Inc. FMC-MCM-1000 Evaluation and Product Development Platform Instruction Sheet 2013 SOC Technologies Inc. SOC is disclosing this user manual (the "Documentation") to you solely for use in the development of

More information

Cisco Unified Communications Manager Device Package 10.5(1)( ) Release Notes

Cisco Unified Communications Manager Device Package 10.5(1)( ) Release Notes Cisco Unified Communications Manager Device Package 10.5(1)(11008-1) Release Notes First Published: September 02, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

Multi-core processors are here, but how do you resolve data bottlenecks in native code?

Multi-core processors are here, but how do you resolve data bottlenecks in native code? Multi-core processors are here, but how do you resolve data bottlenecks in native code? hint: it s all about locality Michael Wall October, 2008 part I of II: System memory 2 PDC 2008 October 2008 Session

More information

This package contains: 1 UC-232A USB-to-Serial Converter 1 Installation Disk 1 User Manual If anything is damaged or missing, contact your dealer.

This package contains: 1 UC-232A USB-to-Serial Converter 1 Installation Disk 1 User Manual If anything is damaged or missing, contact your dealer. User Manual UC-232A Read this guide thoroughly and follow the installation and operation procedures carefully in order to prevent any damage to the units and/or any devices that connect to them. This package

More information

Firmware Loader. Software. For support mail to: tech mca.nl See also our website: mca.com. Software Manual. Revision 1.

Firmware Loader. Software. For support mail to: tech mca.nl See also our website:  mca.com. Software Manual. Revision 1. Firmware Loader Software For support mail to: tech support@smac mca.nl See also our website: www.smac mca.com Software Manual Revision 1.0 www.ingeniamc.com Firmware Loader Software Manual Copyright and

More information

HUNT ENGINEERING HeartConf HEART connection configuration tool

HUNT ENGINEERING HeartConf HEART connection configuration tool HUNT ENGINEERING Chestnut Court, Burton Row, Brent Knoll, Somerset, TA9 4BP, UK Tel: (+44) (0)1278 760188, Fax: (+44) (0)1278 760199, Email: sales@hunteng.co.uk http://www.hunteng.co.uk http://www.hunt-dsp.com

More information

RedPort SAS 6G User manual

RedPort SAS 6G User manual RedPort SAS 6G User manual Revised October 31, 2011 Please visit http://www.wiebetech.com/techsupport.php for FAQs and downloads for this product. WiebeTech is a brand of CRU. Forensic Device User Advisory

More information

CubePro. Main PCB Replacement Guide. Prosumer 3D Printer. Original Instructions

CubePro. Main PCB Replacement Guide. Prosumer 3D Printer. Original Instructions CubePro Prosumer 3D Printer Main PCB Replacement Guide Original Instructions 1 INTRODUCTION COPYRIGHT 2014 by All rights reserved. This document is subject to change without notice. This document is copyrighted

More information

As of October 1, 1998, our address is:

As of October 1, 1998, our address is: 033& 6 Hi/fn TM supplies two of the Internet s most important raw materials: compression and encryption. Hi/fn is also the world s first company to put both on a single chip, creating a processor that

More information

PCMCIA Flash Card User Guide

PCMCIA Flash Card User Guide R R PCMCIA Flash Card User Guide For the CoreBuilder 3500 System Introduction The CoreBuilder 3500 PCMCIA Flash Card is a 20 MB flash card that you can use to save your system software. When you have saved

More information

USB 3.0 Spectra

USB 3.0 Spectra USB 3.0 Spectra 3001-15 1-Port USB 3.0 15m Active Extension Cable User Guide Thank you for purchasing the Icron USB 3.0 Spectra 3001-15. Please read this guide thoroughly. This document applies to Part

More information

HumidiProbe User Guide

HumidiProbe User Guide HumidiProbe User Guide 2005 Pico Technology Limited. All rights reserved. HumidiProbe044-1.3 I HumidiProbe User Manual Contents 1 Introduction...2...2 1 About HumidiProbe...2 2 Intended use...2 3 This

More information

CBV383Z2 Cable Modem Quick Installation Guide

CBV383Z2 Cable Modem Quick Installation Guide Package Contents CBV383Z2 cable modem * 1 Quick Installation Guide * 1 RJ-45 CAT 5 cable * 1 Rear Panel and Hardware Connection 12 V/1.5 A Power Adaptor * 1 6P4C Telephone cord * 1 This chapter describes

More information

3.5 Bay 2.5 Dual SATA Hard Drive Hot-Swap Bay. HSB220SAT25B User Guide

3.5 Bay 2.5 Dual SATA Hard Drive Hot-Swap Bay. HSB220SAT25B User Guide 3.5 Bay 2.5 Dual SATA Hard Drive Hot-Swap Bay HSB220SAT25B User Guide FCC Compliance Statement This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant

More information

USB Server User Manual

USB Server User Manual 1 Copyright Notice Copyright Incorporated 2009. All rights reserved. Disclaimer Incorporated shall not be liable for technical or editorial errors or omissions contained herein; nor for incidental or consequential

More information