DPF-0401 Windows driver software for USB expansion I/O products

Size: px
Start display at page:

Download "DPF-0401 Windows driver software for USB expansion I/O products"

Transcription

1 Interface USB Driver (I/O-CD) DPF-0401 Windows driver software for USB expansion I/O products Help for Windows

2 Contents Chapter 1 Introduction Overview Corresponding Software Driver for Each I/O Function... 3 Chapter 2 Product Specifications Functional Specifications Product Composition Class Library... 5 Chapter 3 Programming Guide Installation Control Method... 6 Chapter 4 Reference List of DLL Function IfUsbDevicePowerCtl Return Values Chapter 5 Sample Programs UsbPwrCtl Chapter 6 Terms of Use Limited Warranty Copyrights and Intellectual Property Rights Warning Regarding Medical and Clinical Use of Our Products Prohibition of Reproduction Limitation of Liability Trademark

3 Chapter 1 Introduction 1.1 Overview The DPF-0401 controls our USB expansion I/O products by applications running on Windows. Application software links a provided dynamic link library (DLL) and controls the product through the application programming interface (API). This document provides information only to control the power supply of our USB expansion I/O products. For functions and usage, refer to each software driver s Help. Find the corresponding software driver in the 1.2 Corresponding Software Driver for Each I/O Function. 1.2 Corresponding Software Driver for Each I/O Function Part Number I/O Function Software Driver IUC-x2934 Digital input/output GPF-2000 TIO-C2934x Analog-to-digital input GPF-3100 Digital-to-analog output GPF-3300 IUC-x2937 Digital input/output GPF-2000 TIO-C2937x IUC-x2980 TIO-C2980x IUC-x4668 TIO-C4668x IUC-x3615 Analog-to-digital input GPF-3100 TIO-C3615 Digital-to-analog output GPF-3300 Counter GPF-6204 IUC-x4676 TIO-C4676x Digital input/output HDLC GPF-2000 GPF

4 Chapter 2 Product Specifications 2.1 Functional Specifications Number of Device Power Supply Control to USB Device Up to one device The DPF-0401 controls power on/off to the USB device For functional specifications of each I/O function, refer to each software driver s Help. Find the corresponding software driver in the 1.2 Corresponding Software Driver for Each I/O Function. 2.2 Product Composition Item File Name Description Management file DPF0401.VER Management information file for Interface Corporation use Latest information README.HTM Latest information Sample programs - - Visual C++ UsbPwrCtl Sample program for power supply control to USB device Visual C#.NET *1 IFCUSB Class library for Visual C#.NET UsbPwrCtl Sample program for power supply control to USB device Visual Basic.NET *1 IFCUSB Class library for Visual C#.NET UsbPwrCtl Sample program for power supply control to USB device Library IFCml.Lib Import library Header file ifusbpwr.h Header file for Visual C++ Help HELP.PDF Help (PDF file) Note: *1 Sample programs for Visual C#.NET and Visual Basic.NET are built with Visual C#.NET 2003 and Visual Basic.NET 2003, respectively. 4

5 2.3 Class Library This product includes the source files of the class library. Creating the class library from the source files makes it easier to define DLL functions. (To customize DLL function call, refer to the class library sources.) 1. Creating a Class Library Prepare class library first to call DLL functions on.net. Visual C#.NET 2. Open the following project file. <installation destination>\interface\dpf0401\samples\cs_net\ifcusb\ifcusb.csproj After building the project file, IFCUSB.dll is created in the bin folder. Visual Basic.NET 2. Open the following project file. <installation destination>\interface\dpf0401\samples\vb_net\ifcusb\ifcusb.vbproj After building the project file, IFCUSB.dll is created in the bin folder. 2. Adding Class Library Reference Visual C#.NET and Visual Basic.NET 2. Select Project > Add Reference. 3. Click the Browse button. 4. Specify the class library DLL to refer. <installation destination>\interface\dpf0401\samples\cs_net\ifcusb\bin\release\ifcusb.dll <installation destination>\interface\dpf0401\samples\vb_net\ifcusb\bin\relaase\ifcusb.dll 5. The DLL file will be displayed in Selected Components. 6. Click OK. 7. Add the namespace of InterfaceCorpDllWrap as below at the header of your source file to call the DLL functions. Visual C#.NET using InterfaceCorpDllWrap; Visual Basic.NET Imports InterfaceCorpDllWrap 5

6 Chapter 3 Programming Guide 3.1 Installation Refer to README.HTM for installation. 3.2 Control Method Refer to each driver s Help for control method of each I/O function. For corresponding software driver, see 1.2 Corresponding Software Driver for Each I/O. 6

7 Chapter 4 Reference 4.3 List of DLL Function No. Function Description Initialization 1 IfUsbDevicePowerCtl Controls the power supply of a USB device. 7

8 4.3.1 IfUsbDevicePowerCtl Description The IfUsbDevicePowerCtl function controls the power supply status of a USB device. Syntax Visual C++ int IfUsbDevicePowerCtl( int UsbNum, // USB number int PwrCtl // Power supply status ); Visual C#.NET [DllImport("ifusbpwr.dll")] int IfUsbDevicePowerCtl( int UsbNum, // USB number int PwrCtl // Power supply status ); Visual Basic.NET Declare Function CmlOpen Lib "ifusbpwr.dll"(_ ByVal UsbNum As Integer _ USB number ByVal PwrCtl As Integer _ Power supply status )As Integer Parameters UsbNum The parameter means the USB number. Specify 1. PwrCtl The parameter specifies the status of power supply. Return Values The IfUsbDevicePowerCtl function returns IFUSBPWR_ERROR_SUCCESS if the process is successfully completed. Otherwise, this function returns another code. Please refer to the 4.4 Return Values. Comments As this function can control the status of power supply to the USB device, it is used when the USB device hangs while being controlled or when the status of USB device needs to be reset. However, when the power supply to the USB device stops, all I/O functions included in the USB device are disabled. Except when the USB device hangs, close all I/O functions in a normal way before using this function. 8

9 Example Controlling the status of power supply to the USB device Visual C++ using namespace System; using namespace System::Threading; int _tmain() { int ret; Console::WriteLine(L"USB Power OFF\n"); // USB Power OFF ret = IfUsbDevicePowerCtl(1, IFUSBPWR_POWER_OFF); if(ret){ Console::WriteLine("IfUsbDevicePowerCtl Error ret[{0}]", ret.tostring("x")); } Thread::Sleep(1000); Console::WriteLine(L"USB Power ON\n"); // USB Power ON ret = IfUsbDevicePowerCtl(1, IFUSBPWR_POWER_ON); if(ret){ Console::WriteLine("IfUsbDevicePowerCtl Error ret[{0}]", ret.tostring("x")); } } return 0; 9

10 Visual C#.NET using System; using InterfaceCorpDllWrap; using System.Threading; static void Main(string[] args) { int ret; Console.WriteLine("USB Power OFF"); // USB Power OFF ret = IFCUSB.IfUsbDevicePowerCtl(1, IFCUSB.IFUSBPWR_POWER_OFF); if(ret!= IFCUSB.IFUSBPWR_ERROR_SUCCESS){ Console.WriteLine("IfUsbDevicePowerCtl Error ret[{0:x}]", ret); } Thread.Sleep(1000); Console.WriteLine("USB Power ON"); } // USB Power ON ret = IFCUSB.IfUsbDevicePowerCtl(1, IFCUSB.IFUSBPWR_POWER_ON); if(ret!= IFCUSB.IFUSBPWR_ERROR_SUCCESS) { Console.WriteLine("IfUsbDevicePowerCtl Error ret[{0:x}]", ret); } return; Visual Basic.NET Imports System Imports System.Threading Imports InterfaceCorpDllWrap Sub Main() Dim ret As Integer Console.WriteLine("USB Power OFF") ' USB Power OFF ret = IFCUSB.IfUsbDevicePowerCtl(1, IFCUSB.IFUSBPWR_POWER_OFF) If ret <> IFCUSB.IFUSBPWR_ERROR_SUCCESS Then Console.WriteLine("IfUsbDevicePowerCtl Error ret[{0:x}]", ret) End If Thread.Sleep(1000) Console.WriteLine("USB Power ON") ' USB Power ON ret = IFCUSB.IfUsbDevicePowerCtl(1, IFCUSB.IFUSBPWR_POWER_ON) If ret <> IFCUSB.IFUSBPWR_ERROR_SUCCESS Then Console.WriteLine("IfUsbDevicePowerCtl Error ret[{0:x}]", ret) End If End Sub 10

11 4.4 Return Values Error Code Value Description IFUSBPWR_ERROR_SUCCESS 0 Successful completion IFUSBPWR_ERROR_FAILED_OPEN_IFCMGR 1h Driver open failed. IFUSBPWR_ERROR_FAILED_USBPWR_CTL 2h The power supply was not normally controlled. IFUSBPWR_ERROR_NOT_SUPPORT 3h Not supported 11

12 Chapter 5 Sample Programs 5.1 UsbPwrCtl Description This sample program controls the power supply to the USB device. Execution Procedure This product does not include executable files of the sample programs. Compile source codes to create executable file. Visual C++ 2. Select File > Open Workspace. 3. Open the makefile, *.dsp. 4. Build the project file. 5. Run the executable file, *.exe. Visual C++.NET 2. Select File > Open > Project. 3. Open the makefile, *.vcproj. 4. Build the project file. 5. Run the executable file, *.exe. Visual Basic 1. Start Visual Basic. 2. Open the project file, *.vbp. 3. Build the project file. 4. Run the executable file, *exe. Visual C#.NET 2. Select File > Open > Project. 3. Open the project file, *.csproj. *1 4. Build the project file. 5. Run the executable file, *.exe. Visual Basic.NET 2. Select File > Open > Project. 3. Open the project file, *.vbproj. *1 4. Build the project file. 5. Run the executable file, *.exe. Note: *1 The class library will be automatically built at the same time. 12

13 Chapter 6 Terms of Use 6.1 Limited Warranty Interface Corporation does not warrant uninterrupted or error-free operations of the source program. The entire risks as to the quality of or arising out of use or performance of the source program, if any, remains with you. Interface believes that information contained in the document is accurate. The document is carefully reviewed for technical accuracy. Interface reserves the right to make changes to subsequent editions of this document without prior notice to holders of this edition. Interface is not liable for any damages arising out of or related to this document or the information contained in it. Charts and tables contained in this document are only for illustration purposes and may vary depending upon a user's specific application. All official specifications are in metric. English unit is supplied for convenience. 6.2 Copyrights and Intellectual Property Rights Interface Corporation owns all titles and intellectual property rights in and to the products. The products include the product software, audio/visual content such as images, texts, or pictures. 6.3 Warning Regarding Medical and Clinical Use of Our Products Our products are not designed for components intended to ensure a level of reliability suitable for use under conditions that might cause serious injury or death. Our products are not designed with components and testing instrument intended to ensure a level of reliability suitable for use in treatment and diagnosis of human. Applications of our products involving medical or clinical treatment can create a potential for accidental injury caused by product failure, or by errors on the part of the user or application engineer. 6.4 Prohibition of Reproduction No part of this document may be reproduced or changed in any form without the prior consent of Interface Corporation. 6.5 Limitation of Liability Interface Corporation will not be liable for any special, incidental, indirect or consequential damages whatsoever even if Interface Corporation or any reseller could foresee the possibility of damages. Users shall assume any subsequent risks whatsoever resulting from such as using and installing this product. Interface Corporation shall not be liable for any incidental or consequential damages, including damages or other costs resulting from defects which might be contained in the product, product supply delay or product failure. Customer's right to recover damages caused by fault or negligence on the part of Interface Corporation shall be limited exclusively to product replacement. This product is designed under Japanese domestic specifications. Interface Corporation is not responsible for the use of this product outside Japan. We do not offer any maintenance service or technical support abroad. Interface Corporation is not liable for any damage arising from the included document or information. 6.6 Trademark Products and company names are trademarks, registered trademarks, or servicemarks of their respective owners. 13

Key Switch Control Software Windows driver software for Touch Panel Classembly Devices

Key Switch Control Software Windows driver software for Touch Panel Classembly Devices IFKSMGR.WIN Key Switch Control Software Windows driver software for Touch Panel Classembly Devices Help for Windows www.interface.co.jp Contents Chapter 1 Introduction 3 1.1 Overview... 3 1.2 Features...

More information

DPC-0225 Storage Protection Management Software

DPC-0225 Storage Protection Management Software Storage Protection Management Software DPC-0225 Storage Protection Management Software Ver.1.10 Help for Windows www.interface.co.jp Contents Chapter 1 Introduction 3 1.1 Overview...3 1.2 Features...3

More information

EWF Management Software Windows driver software for Classembly Devices /Industrial Controller

EWF Management Software Windows driver software for Classembly Devices /Industrial Controller IFEWF.WIN EWF Management Software Windows driver software for Classembly Devices /Industrial Controller Help for Windows www.interface.co.jp Contents Chapter 1 Introduction...3 1.1 Overview... 3 1.2 Features...

More information

System Monitoring Library Windows driver software for Classembly Devices

System Monitoring Library Windows driver software for Classembly Devices IFCPMGR.WIN System Monitoring Library Windows driver software for Classembly Devices www.interface.co.jp Contents Chapter 1 Introduction 3 1.1 Overview...3 1.2 Features...3 Chapter 2 Product Specifications

More information

Automator (Standard)

Automator (Standard) Automator (Standard) DLL Users Guide Available exclusively from PC Control Ltd. www.pc-control.co.uk 2017 Copyright PC Control Ltd. Revision 1.2 Contents 1. Introduction 2. DLL Reference 3. Using the DLL

More information

System Monitoring Library Windows Driver Software for Industrial Controllers

System Monitoring Library Windows Driver Software for Industrial Controllers IFPMGR.WIN System Monitoring Library Windows Driver Software for Industrial ontrollers Help for Windows www.interface.co.jp ontents hapter 1 Introduction...4 1.1 Overview... 4 1.2 Features... 4 hapter

More information

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide MULTIFUNCTIONAL DIGITAL SYSTEMS Software Installation Guide 2013 TOSHIBA TEC CORPORATION All rights reserved Under the copyright laws, this manual cannot be reproduced in any form without prior written

More information

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide MULTIFUNCTIONAL DIGITAL SYSTEMS Software Installation Guide 2013 TOSHIBA TEC CORPORATION All rights reserved Under the copyright laws, this manual cannot be reproduced in any form without prior written

More information

Firstly, to perform the following actions, you must have Admin Rights on your PC.

Firstly, to perform the following actions, you must have Admin Rights on your PC. Product: Checkbox IMH Subject: USB Drivers (Windows XP) The USB connection between a Checkbox IMH and a PC is not automatically recognised by Microsoft Windows and often results in the USB drivers not

More information

The AMuxSeq is capable of having between 2 and 32 analog inputs. The paired inputs are present when the MuxType parameter is set to "Differential.

The AMuxSeq is capable of having between 2 and 32 analog inputs. The paired inputs are present when the MuxType parameter is set to Differential. 1.20 Features Single or differential inputs Adjustable between 2 and 32 inputs Software controlled Inputs may be pins or internal sources No simultaneous connections Bidirectional (passive) General Description

More information

User Manual Arabic Name Romanizer Name Geolocation System

User Manual Arabic Name Romanizer Name Geolocation System User Manual Arabic Name Romanizer Name Geolocation System MAPS Ono Lite (Romanizer) Version 2.50 Coverage of this document This document is the full text user manual for MAPSOno Lite (Romanizer) version

More information

FW Update Tool. Installation Guide. Software Version 2.2

FW Update Tool. Installation Guide. Software Version 2.2 FW Update Tool Installation Guide Software Version 2.2 May 24, 2018 i Contents --- Welcome!........................................................................ 1 Key features...................................................................

More information

Upgrading BankLink Books

Upgrading BankLink Books Upgrading BankLink Books Contents Upgrading BankLink Books... 4 Upgrading BankLink Books using the automatic upgrade 4 Upgrading BankLink Books when asked to upgrade 5 Upgrading BankLink Books Page 2 of

More information

LAP-B(PCI/C-PCI) GPF LAP-B Communications Driver Software for for Windows. Help for Windows.

LAP-B(PCI/C-PCI) GPF LAP-B Communications Driver Software for for Windows. Help for Windows. LAP-B(PCI/C-PCI) GPF-4115 LAP-B Communications Driver Software for for Windows Help for Windows www.interface.co.jp Contents Chapter 1 Introduction 4 1.1 Overview4 1.2 Features.4 Chapter 2 Product Specifications

More information

AT03975: Getting Started with SAM L21. Descripton. Features. SMART ARM-Based Microcontroller APPLICATION NOTE

AT03975: Getting Started with SAM L21. Descripton. Features. SMART ARM-Based Microcontroller APPLICATION NOTE SMART ARM-Based Microcontroller AT03975: Getting Started with SAM L21 APPLICATION NOTE Descripton This application note aims at getting started with the Atmel SAM L21 ARM Cortex -M0+ based microconroller.

More information

Upgrading MYOB BankLink Notes (desktop)

Upgrading MYOB BankLink Notes (desktop) Upgrading MYOB BankLink Notes (desktop) Contents Upgrading MYOB BankLink Notes (desktop)...4 Upgrading MYOB BankLink Notes using the automatic upgrade 4 Upgrading MYOB BankLink Notes when asked to upgrade

More information

XS/SC26-2 Safety Controller Quick Start Guide

XS/SC26-2 Safety Controller Quick Start Guide XS/SC26-2 Safety Controller Quick Start Guide About this Guide This guide is designed to help you create a sample configuration for the XS/SC26-2 Safety Controller using the XS26-2 Expandable Safety Controller

More information

XS/SC26-2 Safety Controller. Quick Start Guide

XS/SC26-2 Safety Controller. Quick Start Guide XS/SC26-2 Safety Controller Quick Start Guide Original Instructions 174869 Rev. C 16 January 2015 1 THIS PAGE IS INTENTIONALLY LEFT BLANK ABOUT THIS GUIDE This guide is designed to help you create a sample

More information

Manual for disconnecting from the internet.

Manual for disconnecting from the internet. For CANVIO Wireless Adapter/STOR.E Wireless Adapter/ CANVIO Cast Wireless Adapter Manual for disconnecting from the internet. Manual Version 1.00 Revision History Version Revision Date Description 01 July

More information

Tisio CE Release Notes

Tisio CE Release Notes Tisio CE Release Notes Copyright Copyright 2005, 2006, 2007 and 2008 by ThinPATH Systems, Inc. The information contained in this document is subject to change without notice. ThinPATH Systems, Inc. shall

More information

End User License Agreement

End User License Agreement End User License Agreement Kyocera International, Inc. ( Kyocera ) End User License Agreement. CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS ( AGREEMENT ) BEFORE USING OR OTHERWISE ACCESSING THE SOFTWARE

More information

Conext CL-60 Inverter Firmware Upgrade Process

Conext CL-60 Inverter Firmware Upgrade Process Conext CL-60 Inverter Firmware Upgrade Process http://solar.schneider-electric.com 976-0380-01-01/B August 2017 Application Note EXCLUSION FOR DOCUMENTATION UNLESS SPECIFICALLY AGREED TO IN WRITING, SELLER

More information

This optional pin is present if the Mode parameter is set to SyncMode or PulseMode. Otherwise, the clock input does not show.

This optional pin is present if the Mode parameter is set to SyncMode or PulseMode. Otherwise, the clock input does not show. 1.50 Features Up to 8-bit General Description The allows the firmware to output digital signals. When to Use a Use a when the firmware needs to interact with a digital system. You can also use the as a

More information

Use the Status Register when the firmware needs to query the state of internal digital signals.

Use the Status Register when the firmware needs to query the state of internal digital signals. 1.50 Features Up to 8-bit General Description The allows the firmware to read digital signals. When to Use a Use the when the firmware needs to query the state of internal digital signals. Input/Output

More information

DME-N Network Driver Installation Guide for M7CL

DME-N Network Driver Installation Guide for M7CL DME-N Network Driver Installation Guide for M7CL ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED

More information

PSoC Creator Quick Start Guide

PSoC Creator Quick Start Guide PSoC Creator Quick Start Guide Install Download PSoC Creator from www.cypress.com/psoccreator, or install from a kit CD. For assistance, go to http://www.cypress.com/go/support For features, system requirements,

More information

TOOLS for n Version2 Update Guide

TOOLS for n Version2 Update Guide TOOLS for n Version2 Update Guide SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED TO USE THIS SOFTWARE

More information

Progression version Crystal Report Functionality Changes

Progression version Crystal Report Functionality Changes Progression version 7.8.100 Crystal Report Functionality Changes Despite the continued efforts of Exact to ensure that the information in this document is as complete and up-to-date as possible, Exact

More information

Installing Your Microsoft Access Database (Manual Installation Instructions)

Installing Your Microsoft Access Database (Manual Installation Instructions) Installing Your Microsoft Access Database (Manual Installation Instructions) Installation and Setup Instructions... 1 Single User Setup... 1 Multiple User Setup... 2 Adjusting Microsoft Access 2003 Macro

More information

Windows 2000 and Windows XP Installation

Windows 2000 and Windows XP Installation Quick Start Guide MAXTOR ONETOUCH III FIREWIRE 400/USB 2.0 Software di installazione,installationsprogram, Software de instalación, Installatiesoftware, Asennusohjelma, Software de Instalação Includes:

More information

MOTIF-RACK XS Editor Installation Guide

MOTIF-RACK XS Editor Installation Guide MOTIF-RACK XS Editor Installation Guide ATTENTION SOFTWARE LICENSING AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED TO

More information

EtherNet/IP Monitor Tool Operation Manual

EtherNet/IP Monitor Tool Operation Manual EtherNet/IP Monitor Tool Operation Manual Introduction This manual documents the operating procedures of the EtherNet/IP Monitor Tool. It does not contain other information, such as precautions. In actual

More information

Old Company Name in Catalogs and Other Documents

Old Company Name in Catalogs and Other Documents To our customers, Old Company Name in Catalogs and Other Documents On April 1 st, 2010, NEC Electronics Corporation merged with Renesas Technology Corporation, and Renesas Electronics Corporation took

More information

MOTIF-RACK XS Editor VST Installation Guide

MOTIF-RACK XS Editor VST Installation Guide MOTIF-RACK XS Editor VST Installation Guide ATTENTION SOFTWARE LICENSING AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED

More information

Network-MIDI Driver Installation Guide

Network-MIDI Driver Installation Guide Network-MIDI Driver Installation Guide ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED TO USE

More information

Communication Protocol Analyzer LE-150P. Installation Manual. The CD-ROM attached to LE-150P contains the latest installation manual in a pdf format.

Communication Protocol Analyzer LE-150P. Installation Manual. The CD-ROM attached to LE-150P contains the latest installation manual in a pdf format. Communication Protocol Analyzer LE-150P Installation Manual The CD-ROM attached to LE-150P contains the latest installation manual in a pdf format. The 4th Edition Contents NOTICE...2 USE LIMITATION...2

More information

If the firmware version indicated is earlier than the "Version 1.06", please update the unit s firmware.

If the firmware version indicated is earlier than the Version 1.06, please update the unit s firmware. STEP 1. Check the current firmware version Panasonic recommends that you update the firmware in your SC-C70 if the firmware version indicated is older than the version being offered. Please check the current

More information

FX RFID READER SERIES Embedded SDK Sample Application

FX RFID READER SERIES Embedded SDK Sample Application FX RFID READER SERIES Embedded SDK Sample Application User Guide MN000539A01 FX RFID READER SERIES EMBEDDED SDK SAMPLE APPLICATIONS USER GUIDE MN000539A01 Revision A December 2017 Copyright 2017 ZIH Corp.

More information

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT TERMS & CONDITIONS www.karnevalkings.com (the "Site") is a website and online service owned and operated by the ViisTek Media group of companies (collectively known as "Karnevalkings.com", "we," "group",

More information

TotalShredder USB. User s Guide

TotalShredder USB. User s Guide TotalShredder USB User s Guide Copyright Notice No part of this publication may be copied, transmitted, stored in a retrieval system or translated into any language in any form or by any means without

More information

Copyright PFU LIMITED

Copyright PFU LIMITED -------------------------------------------------------- PaperStream Capture 1.0.12 README File -------------------------------------------------------- Copyright PFU LIMITED 2013-2015 This file contains

More information

SATO Printer Interface API

SATO Printer Interface API SATO Printer Interface API Version 1.2 16-OCT-2014 SATO Global Business Services Pte. Ltd. SATO Printer Interface API Page 1 CONTENTS Software License Agreement... 3 Copyrights... 4 Limitation of Liability...

More information

MP3 Audio Player. Install & User Manual. Genave / NRC, Inc. Copyright Genave / NRC, Inc.

MP3 Audio Player. Install & User Manual. Genave / NRC, Inc.   Copyright Genave / NRC, Inc. MP3 Audio Player Install & User Genave / NRC, Inc. www.genave.com support@genave.com Copyright 2017. Genave / NRC, Inc. Tech. Publication No. 9000-0000-120 Rev 00 Warning If incorrectly used, this equipment

More information

AVRflash. Program. User manual

AVRflash. Program. User manual AVRflash User manual Program AVRprog programmer is a high performance tool used for programming AVR microcontroller families from ATMEL. The AVRflash program communicates to the microcontroller through

More information

Toast Audio Assistant User Guide

Toast Audio Assistant User Guide Toast Audio Assistant User Guide Toast Audio Assistant lets you capture audio from a variety of sources. You can then edit the audio, break it up into tracks, add effects, and export it to itunes or burn

More information

Aellius LynX Office Lookup Enhancements

Aellius LynX Office Lookup Enhancements Aellius LynX Office Lookup Enhancements August 2013 COPYRIGHT LynX Office Enhancements Copyright 2013, Aellius Professional Research & Consulting, LLC. All rights reserved. LynX Business Integrator (the

More information

User s Guide. OM-CP-PRHTEMP2000 Pressure, Humidity and Temperature Data Logger with LCD

User s Guide. OM-CP-PRHTEMP2000 Pressure, Humidity and Temperature Data Logger with LCD User s Guide OM-CP-PRHTEMP2000 Pressure, Humidity and Temperature Data Logger with LCD OM-CP-PRHTEMP2000 Product Overview The OM-CP-PRHTEMP2000 is a pressure, temperature and humidity data logger with

More information

Using Your NI Software for DOS or Windows 3 with Windows 95/98

Using Your NI Software for DOS or Windows 3 with Windows 95/98 Using Your NI-488.2 Software for DOS or Windows 3 with Windows 95/98 Using NI-488.2 with Windows 95/98 June 1998 Edition Part Number 321011C-01 Copyright 1995, 1998 National Instruments Corporation. All

More information

AT06467: Getting started with SAM D09/D10/D11. Features. Description. SMART ARM-based Microcontrollers APPLICATION NOTE

AT06467: Getting started with SAM D09/D10/D11. Features. Description. SMART ARM-based Microcontrollers APPLICATION NOTE SMART ARM-based Microcontrollers AT06467: Getting started with SAM D09/D10/D11 APPLICATION NOTE Features Getting started with Atmel SMART SAM D09/D10/D11 microcontrollers and tools Getting started with

More information

One 32-bit counter that can be free running or generate periodic interrupts

One 32-bit counter that can be free running or generate periodic interrupts PSoC Creator Component Datasheet Multi-Counter Watchdog (MCWDT_PDL) 1.0 Features Configures up to three counters in a multi-counter watchdog (MCWDT) block Two 16-bit counters that can be free running,

More information

Terms and Conditions of Website Use

Terms and Conditions of Website Use Terms and Conditions of Website Use This website (the "Site") is owned and operated by Hoshizaki Lancer Pty Ltd (ABN 84 007 706 461) ("Hoshizaki Lancer") and may contain material from Hoshizaki Lancer

More information

Orbix 3.0 for Windows Installation Guide

Orbix 3.0 for Windows Installation Guide Orbix 3.0 for Windows Installation Guide IONA Technologies PLC March 1999 Orbix is a Registered Trademark of IONA Technologies PLC. While the information in this publication is believed to be accurate,

More information

Roland CutChoice. Ver. 1 USER S MANUAL

Roland CutChoice. Ver. 1 USER S MANUAL Roland CutChoice Ver. 1 USER S MANUAL Thank you very much for purchasing the Roland cutter. To ensure correct and safe usage with a full understanding of this product s performance, please be sure to read

More information

UM PR533 - PCSC Tool. User manual COMPANY PUBLIC. Rev November Document information

UM PR533 - PCSC Tool. User manual COMPANY PUBLIC. Rev November Document information PR533 - PCSC Tool Document information Info Content Keywords PR533, CCID, PCSC, APDU Abstract This document describes the PCSC Tool software which demonstrates the capabilities of PR533 device. Revision

More information

Studio Manager. for / Installation Guide. Keep This Manual For Future Reference.

Studio Manager. for / Installation Guide. Keep This Manual For Future Reference. Studio Manager for / Installation Guide Keep This Manual For Future Reference. E i Important Information Exclusion of Certain Liability Trademarks Copyright Manufacturer, importer, or dealer shall not

More information

STAND-ALONE PROGRAMMER

STAND-ALONE PROGRAMMER Fujitsu Semiconductor Design (Chengdu) Co., Ltd. MCU-AN-500108-E-18 New 8FX FAMILY 8-BIT MICROCONTROLLER ALL SERIES STAND-ALONE PROGRAMMER Revision History Revision History Version Date Updated by Modifications

More information

Quick Start Guide. Model 0260 Secondary Electronics

Quick Start Guide. Model 0260 Secondary Electronics Quick Start Guide Brooks Model 0260 Secondary Electronics 5 Quick Start Guide Dear Customer, The Brooks Smart Interface is a Microsoft Windows based software application that provides expanded control

More information

SENSORLESS-BLDC-MOTOR-RD

SENSORLESS-BLDC-MOTOR-RD S ENSORLESS BLDC MOTOR REFERENCE DESIGN KIT USER S GUIDE 1. Kit Contents The BLDC Motor Reference Design Kit contains the following items: BLDC Motor Reference Design Board Brushless DC (BLDC) Motor Universal

More information

Copyright PFU LIMITED 2016

Copyright PFU LIMITED 2016 -------------------------------------------------------- PaperStream Capture Lite 1.0.1 README File -------------------------------------------------------- Copyright PFU LIMITED 2016 This file contains

More information

iphone/ipad Connection Manual

iphone/ipad Connection Manual For Electone users / Connection Manual By connecting your, or ipod touch to a compatible Electone and using the various dedicated applications, you can expand the potential of the Electone and make it

More information

LOC. Supplement C Lock-Out Capability for Falcon Guidance Systems.

LOC. Supplement C Lock-Out Capability for Falcon Guidance Systems. LOC Supplement C Lock-Out Capability for Falcon Guidance Systems dci@digital-control.com www.digitrak.com 403-3330-00-A, printed on 1/22/2018 2017 by Digital Control Incorporated. All rights reserved.

More information

Windows XP Installation Guide

Windows XP Installation Guide E3484 Windows XP Installation Guide November 2007 15G06Q009000 Copyright Information No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed,

More information

(1) DirectCD. Software Operating Instructions MVC-CD200/CD Sony Corporation

(1) DirectCD. Software Operating Instructions MVC-CD200/CD Sony Corporation 3-067-952-12(1) DirectCD Software Operating Instructions MVC-CD200/CD300 2001 Sony Corporation Notice for users Program Copyright 1999 Adaptec, Inc. All rights reserved./ Documentation 2001 Sony Corporation

More information

Old Company Name in Catalogs and Other Documents

Old Company Name in Catalogs and Other Documents To our customers, Old Company Name in Catalogs and Other Documents On April 1 st, 2010, NEC Electronics Corporation merged with Renesas Technology Corporation, and Renesas Electronics Corporation took

More information

WindowsCE.NET. Guide For Software Development. CASIO Computer Co., Ltd. (Version 1.00) Copyright All rights reserved.

WindowsCE.NET. Guide For Software Development. CASIO Computer Co., Ltd. (Version 1.00) Copyright All rights reserved. WindowsCE.NET Guide For Software Development (Version 1.00) CASIO Computer Co., Ltd. Copyright 2004. All rights reserved. June 2004 Table of Contents Editorial Record 3 Preface 4 Chapter 1 Development

More information

Base Timer Channel (BT) Features. General Description. When to Use a PDL_BT Component 1.0

Base Timer Channel (BT) Features. General Description. When to Use a PDL_BT Component 1.0 1.0 Features Four operating modes 16-bit PWM Timer 16-bit PPG Timer 16/32-bit Reload Timer 16/32-bit PWC Timer Trigger generation for ADC conversion General The Peripheral Driver Library (PDL) Base Timer

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

Flexy - OPCUA IOServer

Flexy - OPCUA IOServer Flexy - OPCUA IOServer 1. Introduction This info applies to ewon Flexy devices. Since firmware 13.0s0, the Flexy integrates a new IO Server called OPCUA. This IOServer allows ewon to act as an OPCUA client

More information

UM EEPROM Management of PN746X and PN736X. User manual COMPANY PUBLIC. Rev February Document information

UM EEPROM Management of PN746X and PN736X. User manual COMPANY PUBLIC. Rev February Document information Document information Info Content Keywords Abstract PN7462, PN7362, PN7360; EEPROM This document describes how to manage EEPROM of PN7462 family. Revision history Rev Date Description 1.0 20170202 First

More information

Fujitsu ScandAll PRO V2.1.5 README

Fujitsu ScandAll PRO V2.1.5 README -------------------------------------------------------- Fujitsu ScandAll PRO V2.1.5 README -------------------------------------------------------- Copyright PFU Limited 2007-2017 This file contains information

More information

One Identity Starling Two-Factor Authentication. Administrator Guide

One Identity Starling Two-Factor Authentication. Administrator Guide One Identity Authentication Administrator Guide Copyright 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

HD/SD H.264 Capture Device (H.264 Video Encoder + Decoder) User s Manual Model 2226 Rev.A March 2010

HD/SD H.264 Capture Device (H.264 Video Encoder + Decoder) User s Manual Model 2226 Rev.A March 2010 HD/SD H.264 Capture Device (H.264 Video Encoder + Decoder) User s Manual Model 2226 Rev.A March 2010 Table of Contents TABLE OF CONTENTS...2 LIMITED WARRANTY...4 SPECIAL HANDLING INSTRUCTIONS...5 INTRODUCTION...6

More information

This input determines the next value of the output. The output does not change until the next rising edge of the clock.

This input determines the next value of the output. The output does not change until the next rising edge of the clock. 1.30 Features Asynchronous reset or preset Synchronous reset, preset, or both Configurable width for array of s General Description The stores a digital value. When to Use a Use the to implement sequential

More information

PSoC 6 Current Digital to Analog Converter (IDAC7)

PSoC 6 Current Digital to Analog Converter (IDAC7) 1.0 Features Six current ranges (4.96 ua to 635 ua) Sink or Source current 7-bit resolution Two IDACs can be put in parallel to form an 8-bit IDAC Add external resistor for VDAC functionality General Description

More information

Summit-ICE Emulator Hardware User s Guide

Summit-ICE Emulator Hardware User s Guide Summit-ICE Emulator Hardware User s Guide 2000 White Mountain DSP Notice Analog Devices Inc. reserves the right to make changes to or to discontinue any product or service identified in this publication

More information

Using the NEMA SHADER-Edit

Using the NEMA SHADER-Edit Using the NEMA SHADER-Edit A Comprehensive Overview Version 1.1 February 8, 2018 History Version Date Description 1.1 07-2-2018 NemaP mode included 1.0 10-5-2017 Initial Version v1.1 External Confidential

More information

Stellar Phoenix Password Recovery For Windows Server. Version 2.0. User Guide

Stellar Phoenix Password Recovery For Windows Server. Version 2.0. User Guide Stellar Phoenix Password Recovery For Windows Server Version 2.0 User Guide Overview Stellar Phoenix Password Recovery For Windows Server is a powerful application that helps you reset a Windows Server

More information

4D Systems. Application Note: 4D-AN-G3001. in ViSi Environment. Document Date: 15 th December Document Revision: 1.0

4D Systems. Application Note: 4D-AN-G3001. in ViSi Environment. Document Date: 15 th December Document Revision: 1.0 4D Systems Application Note: Displaying an Image on GOLDELOX Modules in ViSi Environment Document Date: 15 th December 2012 Document Revision: 1.0 2012 4D Systems www.4dsystems.com.au Page 1 of 8 Description

More information

STEPPER-MOTOR-RD STEPPER MOTOR REFERENCE DESIGN KIT USER S GUIDE. 1. Kit Contents. 2. Kit Overview. Figure 1. Stepper Motor Reference Design Board

STEPPER-MOTOR-RD STEPPER MOTOR REFERENCE DESIGN KIT USER S GUIDE. 1. Kit Contents. 2. Kit Overview. Figure 1. Stepper Motor Reference Design Board STEPPER MOTOR REFERENCE DESIGN KIT USER S GUIDE 1. Kit Contents The Stepper Motor Reference Design Kit contains the following items: Stepper Motor Reference Design Board Stepper Motor Universal AC to DC

More information

Shimadzu LabSolutions Connector Plugin

Shimadzu LabSolutions Connector Plugin Diablo EZReporter 4.0 Shimadzu LabSolutions Connector Plugin Copyright 2016, Diablo Analytical, Inc. Diablo Analytical EZReporter Software EZReporter 4.0 Shimadzu LabSolutions Connector Plugin Copyright

More information

AhnLab Software License Agreement

AhnLab Software License Agreement AhnLab Software License Agreement IMPORTANT - READ CAREFULLY BEFORE USING THE SOFTWARE. This AhnLab Software License Agreement (this "Agreement") is a legal agreement by and between you and AhnLab, Inc.

More information

Workshop 4 Installation INSTALL GUIDE. Document Date: February 4 th, Document Revision: 1.1

Workshop 4 Installation INSTALL GUIDE. Document Date: February 4 th, Document Revision: 1.1 INSTALL GUIDE Workshop 4 Installation Document Date: February 4 th, 2013 Document Revision: 1.1 Description This document describes how to install and configure Workshop 4, and how to install the driver

More information

SBA-7121M-T1 Blade Module RAID Setup Procedure

SBA-7121M-T1 Blade Module RAID Setup Procedure SBA-7121M-T1 Blade Module RAID Setup Procedure Revison 1.0 SBA-7121M-T1 Blade Module RAID Setup Procedure The information in this User s Manual has been carefully reviewed and is believed to be accurate.

More information

PC-HELPER. Expansion Adapter for Express Card Slot EAD-CE-EC. User s Manual CONTEC CO.,LTD.

PC-HELPER. Expansion Adapter for Express Card Slot EAD-CE-EC. User s Manual CONTEC CO.,LTD. PC-HELPER Expansion Adapter for Express Card Slot EAD-CE-EC User s Manual CONTEC CO.,LTD. Check Your Package Thank you for purchasing the CONTEC product. The product consists of the items listed below.

More information

UM PCAL6524 demonstration board OM Document information

UM PCAL6524 demonstration board OM Document information Rev. 1 23 September 2015 User manual Document information Info Content Keywords OM13320 Fm+ development kit, OM13260 Fm+ I2C bus development board, OM13303 GPIO target board Abstract Installation guide

More information

One Identity Active Roles 7.2

One Identity Active Roles 7.2 One Identity December 2017 This document provides information about the Active Roles Add_on Manager7.2. About Active Roles Add_on Manager New features Known issues System requirements Getting started with

More information

IPNexus Server Secure Instant Messaging & Integrated Collaboration

IPNexus Server Secure Instant Messaging & Integrated Collaboration IPNexus Server Secure Instant Messaging & Integrated Collaboration Version 1.5 Installation & Setup Guide DOC00023 Rev. 1.0 01.03 VCON IPNexus Server Installation & Setup Guide 1 2003 VCON Ltd. All Rights

More information

PRESENTATION BACKGROUNDS

PRESENTATION BACKGROUNDS PRESENTATION BACKGROUNDS TM COMPATIBLE WITH ALL MAJOR PRESENTATION SOFTWARE 001TJ1.JPG 002TJ1.JPG 003TJ1.JPG 004TJ1.JPG 005TJ1.JPG 006TJ1.JPG 007TJ1.JPG 008TJ1.JPG 009TJ1.JPG 010TJ1.JPG 011TJ1.JPG 012TJ1.JPG

More information

Setting Oscillation Stabilization Wait Time of the main clock (CLKMO) and sub clock (CLKSO)

Setting Oscillation Stabilization Wait Time of the main clock (CLKMO) and sub clock (CLKSO) 1.0 Features Selecting Clock mode Internal Bus Clock Frequency Division Control PLL Clock Control Setting Oscillation Stabilization Wait Time of the main clock (CLKMO) and sub clock (CLKSO) Interrupts

More information

Capable of adjusting detection timings for start bit and data bit

Capable of adjusting detection timings for start bit and data bit PSoC Creator Component Datasheet Remote Control (PDL_RC) 1.0 Features Up to 2 Channels HDMI-CEC/ High Definition Multimedia Interface Consumer Electronics Control transmitter/receiver SIRCS/Sony Infrared

More information

TWAIN 163/211. User Manual

TWAIN 163/211. User Manual TWAIN 163/211 User Manual Contents 1 Introduction 1.1 Software end user license agreement... 1-5 1.2 Explanation of manual conventions... 1-8 Safety advices... 1-8 Sequence of action... 1-8 Tips... 1-9

More information

Old Company Name in Catalogs and Other Documents

Old Company Name in Catalogs and Other Documents To our customers, Old Company Name in Catalogs and Other Documents On April 1 st, 2010, NEC Electronics Corporation merged with Renesas Technology Corporation, and Renesas Electronics Corporation took

More information

TECHNICAL DEPT. Lenses Test Report

TECHNICAL DEPT. Lenses Test Report www.khatod.com technical@khatod.com Page 1 - Dicember 2017 Contents 1 KEPL142320UGR 20 FWHM Pag. 2 2 KEPL142336UGR 36 FWHM Pag. 3 3 KEPL142360UGR 60 FWHM Pag. 4 4 KEPL142420UGR 20 FWHM Pag. 5 5 KEPL142436UGR

More information

SUPPLEMENT TO THE MDC-360C MANUAL MDC-361C. Film Deposition Controller. IPN Rev. C

SUPPLEMENT TO THE MDC-360C MANUAL MDC-361C. Film Deposition Controller. IPN Rev. C SUPPLEMENT TO THE MDC-360C MANUAL MDC-361C Film Deposition Controller IPN 624811 Rev. C SUPPLEMENT TO THE MDC-360C MANUAL MDC-361C Film Deposition Controller IPN 628411 Rev. C www.inficon.com reachus@inficon.com

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

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

UM LPC General Purpose Shield (OM13082) Rev November Document information. Keywords

UM LPC General Purpose Shield (OM13082) Rev November Document information. Keywords Rev. 1.0 17 November 2015 User manual Document information Info Content Keywords LPCXpresso, LPC General Purpose Shield, OM13082 Abstract LPC General Purpose Shield User Manual Revision history Rev Date

More information

Users Manual OPN Pocket Memory Scanner

Users Manual OPN Pocket Memory Scanner Users Manual OPN 2001 Pocket Memory Scanner CAUTION: This user s manual may be revised or withdrawn at any time without prior notice. Copyright 2006 Opticon Sensors Europe B.V. All rights reserved. This

More information

Use a DieTemp component when you want to measure the die temperature of a device.

Use a DieTemp component when you want to measure the die temperature of a device. PSoC Creator Component Datasheet Die Temperature (DieTemp) 2.0 Features Accuracy of ±5 C Range 40 C to +140 C (0xFFD8 to 0x008C) Blocking and non-blocking API General Description The Die Temperature (DieTemp)

More information

RTL Design and IP Generation Tutorial. PlanAhead Design Tool

RTL Design and IP Generation Tutorial. PlanAhead Design Tool RTL Design and IP Generation Tutorial PlanAhead Design Tool Notice of Disclaimer The information disclosed to you hereunder (the "Materials") is provided solely for the selection and use of Xilinx products.

More information