Reader classic-pro Reader

Size: px
Start display at page:

Download "Reader classic-pro Reader"

Transcription

1 Integration Guide i-scan classic-pro References for using the Advanced Protocol Frame instead off Standard Protocol Frame Preliminary public (B) N10710-e-ID-B.doc

2 Copyright 2011 by FEIG ELECTRONIC GmbH Lange Strasse 4 D Weilburg-Waldhausen Tel.: Note With the edition of this document, all previous editions become void. Indications made in this manual may be changed without previous notice. Copying of this document, and giving it to others and the use or communication of the contents thereof are forbidden without express authority. Offenders are liable to the payment of damages. All rights are reserved in the event of the grant of a patent or the registration of a utility model or design. Composition of the information in this document has been done to the best of our knowledge. FEIG ELECTRONIC GmbH does not guarantee the correctness and completeness of the details given in this manual and may not be held liable for damages ensuing from incorrect or incomplete information. Since, despite all our efforts, errors may not be completely avoided, we are always grateful for your useful tips. The instructions given in this manual are based on advantageous boundary conditions. FEIG ELECTRONIC GmbH does not give any guarantee promise for perfect function in cross environments and does not give any guaranty for the functionality of the complete system which incorporates the subject of this document. FEIG ELECTRONIC call explicit attention that devices which are subject of this document are not designed with components and testing methods for a level of reliability suitable for use in or in connection with surgical implants or as critical components in any life support systems whose failure to perform can reasonably be expected to cause significant injury to a human. To avoid damage, injury, or death, the user or application designer must take reasonably prudent steps to protect against system failures. FEIG ELECTRONIC GmbH assumes no responsibility for the use of any information contained in this document and makes no representation that they free of patent infringement. FEIG ELECTRONIC GmbH does not convey any license under its patent rights nor the rights of others. OBID and OBID i-scan are registered trademarks of FEIG ELECTRONIC GmbH. FEIG ELECTRONIC GmbH Page 2 of 9 N10710-e-ID-B.doc

3 Contents 1. Introduction 4 2. What is the difference of the protocol formats Standard Protocol Frame Advanced Protocol Frame Necessary modification in Software Applications Detecting s with different Protocol Frames in one App Detecting at serial port Detecting at USB... 9 FEIG ELECTRONIC GmbH Page 3 of 9 N10710-e-ID-B.doc

4 1. Introduction In the ambition to provide the markets with high performance RFID-Products, future RFID-s will only support the Advanced Protocol Frame. With the development oft the Mid Range ID ISC.MR200 in the year 2004 the Advanced Protocol has been realized the first time. All following readers like the ID ISC.LR(M)2000/2500 or the new ID ISC.MR102 supporting the Advanced Protocol and the Standard Protocol parallel. With the development of the new ID ISC.MR102 and the ID ISC.LR2500 readers the default reader configuration setting is set to Advanced Protocol only the first time. In future all further new reader developments will support the Advanced Protocol only! That s why FEIG ELECTRONIC GmbH strongly recommends to support the Advanced Protocol with new and also already existing software application. This will make sure that also in future the integration of new FEIG reader can be realized very easy and without running in any trouble. The following table gives an overview of the FEIG readers and the supported protocol formats: Firmware Support Standard Standard und Advanced Advanced i-scan MR100 / PR100 / PRH100 M01 / LR(M)200 MR200 / M02 MR101 / PR101 / PRH101/102 LR(M)2000 MR102 LR(M)2500 MRU102 LR1002 Default Setting Standard Standard & Advanced Advanced Firmware Support Standard Standard und Advanced Advanced classic-pro CPR/CPRM02 CPR04 CPR40.xx CPR44 CPR03 CPR50/52/MAX50 Future s Default Setting Standard Standard & Advanced Advanced Note: The reader send a status message 0x80 (Unknown Command) if a Standard Protocol is send and only Advanced Protocol Frame is supported. FEIG ELECTRONIC GmbH Page 4 of 9 N10710-e-ID-B.doc

5 2. What is the difference of the protocol formats With the Standard Protocol Frame the first byte indicates the length information (number of following bytes) of the following protocol. So the maximum protocol length is limited to 255 bytes only. With the Advanced Protocol Frame we are using 2 bytes for the length information of the protocol. Now it is theoretical possible to use protocol length up to bytes. In praxis the maximum protocol length is limited by the reader buffer size of the corresponding reader type. An Advanced Protocol starts always with the first STX byte [0x02] followed by the 2 byte length information ( ALENGTH ( )). So it is easy to identify if it is an Advanced- or a Standard Protocol Standard Protocol Frame Host n-2 n-1 n LENGTH = n Host COM-ADR CONTROL- BYTE (DATA) (5...n-2) n-1 n LENGTH = n COM-ADR CONTROL- BYTE STATU S (DATA) LENGTH: Number of protocol bytes: 1-n (6 255) incl. length byte and checksum 2.2. Advanced Protocol Frame Host (6...n-2) n-1 n STX (0x02) Host ALENGTH ALENGTH COM- ADR CONTROL- BYTE (DATA) (7...n-2) n-1 n STX (0x02) ALENGTH ALENGTH COM- ADR CONTROL- BYTE STATUS (DATA) STX: If the responded protocol of the starts with the STX sign (0x02) the protocol frame is Advanced Protocol-Length. Then the protocol length is defined by the 2 Byte Parameter ALENGTH. ALENGTH (n = ): Number of protocol bytes including STX, ALENGTH and FEIG ELECTRONIC GmbH Page 5 of 9 N10710-e-ID-B.doc

6 3. Necessary modification in Software Applications In constellations when OBID i-scan - and/or OBID classic-pro s, supporting only Standard Protocol Frame or only Advanced Protocol Frame, must be detected together in one application, the detection algorithm must be prepared with more logic to prevent long-term timeouts Detecting s with different Protocol Frames in one App High-level APIs like C++, Java or.net class libraries have integrated a flexible algorithm with the methods FindBaudRate() 1 and ReadInfo(). Programmers using these Methods have nothing to do. Applications based on Low-level APIs (up to the protocol layer realized with FEISC) must implement this logic separately. For serial port and USB, different strategies must be applied. For TCP/IP s the protocol frame can always be set to Advanced. 1 only for serial or Bluetooth connection FEIG ELECTRONIC GmbH Page 6 of 9 N10710-e-ID-B.doc

7 Detecting at serial port Detecting a at the serial port needs protocol transmissions. The program flow illustrated below works with the simple [0x52] Get Baud protocol, which is probed with different port frames, different port baudrates and alternating protocol frames. All this with reduced timeout to speed up the detection process. When all transmission settings are fit, the returns a response, otherwise, the transmission runs in a timeout. Figure 1: Detection algorithm FEIG ELECTRONIC GmbH Page 7 of 9 N10710-e-ID-B.doc

8 FECOM and FEISC // NOTE: this sample is without error handling. In real applications, the error handling for every // FECOM and FEISC function call must be added!! int back = 0; int iporthandle = FECOM_OpenPort("1"); int ihandle = FEISC_New(iPortHandle); char ctimeout[8]; char coldbaud[8]; char coldframe[8]; char coldtimeout[8]; char cprtframe[10]; char* baud[] = "115200", "57600", "38400", "19200", "9600", "4800" ; char* frame[] = "8E1", "8N1", "8O1" ; if(iporthandle > 0 && ihandle > 0) // call detect function back = MyDetectCOM(iPortHnd, ihandle); // detect function for serial port int MyDetectCOM(int iporthnd, int ihandle) // save actual baudrate, frame, timeout FECOM_GetPortPara( iporthnd, "baud", coldbaud ); FECOM_GetPortPara( iporthnd, "frame", coldframe ); FECOM_GetPortPara( iporthnd, "timeout", coldtimeout ); // reduce timeout to 300ms FECOM_SetPortPara( iporthnd, "timeout", 300 ); // for some OBID s (ISC.MR/PR/PRH100, ISC.LR200, ISC.M02, CPR.M02, CPR.02, CPR.04) // we setup Standard Protocol Frame to give these Reasers a chance FEISC_SetPara(iHandle, "FrameSupport", "STANDARD"); for( int j=0; j<3; j++ ) // try all frames "8E1", "8N1", "8O1" // set the next frame FECOM_SetPortPara( iporthnd, "frame", frame[j]); for( int i=0; i<3; i++ ) // try all baudrates, beginning with "115200" // set the next baudrate FECOM_SetPortPara( iporthnd, "baud", baud[i]); // search for the connected // with busaddress 255 each is answering back = FEISC_0x52_GetBaud(iHandle, 255); if(back = 0) // detected, restore communication timeout FECOM_SetPortPara(iPortHandle, "Timeout", coldtimeout); return -1; // alternate protocol frame FEISC_GetPara(iHandle, "FrameSupport", cprtframe); if(strcmp(cprtframe, "STANDARD") == 0) FEISC_SetPara(iHandle, "FrameSupport", "ADVANCED"); else FEISC_SetPara(iHandle, "FrameSupport", "STANDARD"); // no detected, restore previous port settings FECOM_SetPortPara(iPortHandle, "baud", coldbaud); FECOM_SetPortPara(iPortHandle, "frame", coldframe); FECOM_SetPortPara(iPortHandle, "Timeout", coldtimeout); return 0; FEIG ELECTRONIC GmbH Page 8 of 9 N10710-e-ID-B.doc

9 Detecting at USB Detecting a at USB needs no protocol transmissions and it makes the setting of the protocol frame much easier. When a is detected by the kernel driver, the s name is requested and evaluated. If the name is found in a positive list (CPR.04, ISC.MR100, ISC.PRH100), the protocol frame is set to Standard, otherwise to Advanced. FEUSB and FEISC // NOTE: this sample is without error handling. In real applications, the error handling for every // FEUSB and FEISC function call must be added!! int back = 0; int ihandle = FEISC_New(0); char cporthandle[11]; char cdevicename[32]; if(ihandle > 0) // call detect function back = MyDetectUSB(iHandle); // detect function for USB int MyDetectUSB(int ihandle) int iporthandle = FEUSB_ScanAndOpen(0); // connect first found OBID if(iporthandle < 0) return -1; // no connected // set port handle in reader object sscanf(cporthandle, "%d", &iporthandle); FEISC_SetPara(iHandle, PortHnd, cporthandle); // request name to detect ISC.MR/PRH100-U or CPR.04-USB, // which supports only Standard Protocol Frame // all other USB-s supports Advanced Protocol Frame FEUSB_GetDevicePara(iPortHandle,, cdevicename); if(strcmp(cdevicename, ID CPR.04-USB") == 0) FEISC_SetPara(iHandle, "FrameSupport", "STANDARD"); else if(strcmp(cdevicename, ID ISC.MR100-U") == 0) FEISC_SetPara(iHandle, "FrameSupport", "STANDARD"); else if(strcmp(cdevicename, ID ISC.PRH100-U") == 0) FEISC_SetPara(iHandle, "FrameSupport", "STANDARD"); else FEISC_SetPara(iHandle, "FrameSupport", "ADVANCED"); // detected return 0; FEIG ELECTRONIC GmbH Page 9 of 9 N10710-e-ID-B.doc

FIRMWARE RELEASE-NOTE. OBID classic-pro ID CPR50.10-E. RF-Controller (RFC) preliminary public (B) SWRN ID CPR50_10-E.

FIRMWARE RELEASE-NOTE. OBID classic-pro ID CPR50.10-E. RF-Controller (RFC) preliminary public (B) SWRN ID CPR50_10-E. OBID classic-pro FIRMWARE RELEASE-NOTE ID CPR50.10-E RF-Controller (RFC) preliminary public (B) 2011-04-04 SWRN ID CPR50_10-E.doc Note Copyright 2010-11 by FEIG ELECTRONIC GmbH Lange Strasse 4 D-35781

More information

ID ISC.MR200-E TCP/IP

ID ISC.MR200-E TCP/IP OBID i-scan APPLICATION-NOTE ID ISC.MR200-E TCP/IP Controller Firmware Update preliminary public (B) 2005-06-08 N50600-0e-ID-B.doc Note Copyright 2005 by FEIG ELECTRONIC GmbH Lange Strasse 4 D-35781 Weilburg-Waldhausen

More information

ID ISC.MR101 ID ISC.PR101 ID ISC.PRH101

ID ISC.MR101 ID ISC.PR101 ID ISC.PRH101 OBID i-scan MANUAL ID ISC.MR101 ID ISC.PR101 ID ISC.PRH101 History of Firmware Revisions final public 2010-03-11 SWRN MR_PR_PRH101.doc Copyright 2010 by FEIG ELECTRONIC GmbH Lange Strasse 4 D-35781 Weilburg-Waldhausen

More information

Communication FU UHF

Communication FU UHF OBID i-scan MANUAL Communication FU UHF Communication Function Unit UHF Function Unit Commands Reader FU (Function Unit) final public (B) 2008-05-30 H80302-0e-ID-B.doc Copyright 2008 by FEIG ELECTRONIC

More information

ID ISOStart HANDBUCH V7.02. Demo Program for OBID i-scan and OBID classic-pro Reader. (Windows 98/NT/2000/XP)

ID ISOStart HANDBUCH V7.02. Demo Program for OBID i-scan and OBID classic-pro Reader. (Windows 98/NT/2000/XP) OBID HANDBUCH ID ISOStart V7.02 Demo Program for OBID i-scan and OBID classic-pro Reader (Windows 98/NT/2000/XP) final public (B) 2006-10-09 H81291-8e-ID.doc Copyright 2002-2006 by FEIG ELECTRONIC GmbH

More information

Getting Started with ID ISC.LR(M)U1000/2000 UHF-Reader

Getting Started with ID ISC.LR(M)U1000/2000 UHF-Reader Getting Started with ID ISC.LR(M)U1000/2000 UHF-Reader FEIG ELECTRONIC GmbH, Lange Strasse 4, D-35781 Weilburg (tel) +49 (0) 6471 3109 0, (fax) +49 (0) 6471 3109 99 (web) http://www.feig.de (email) OBID@feig.de

More information

OBID PC/SC-Driver USB

OBID PC/SC-Driver USB OBID classic-pro MANUAL OBID PC/SC-Driver USB up from Version 02.07.00 final public (B) 2009-04-08 H61201-6e-ID-B.doc Copyright 2009 by FEIG ELECTRONIC GmbH Lange Strasse 4 D-35781 Weilburg-Waldhausen

More information

RELEASE-NOTES. ID ISOStart Demoprogram for. OBID i-scan Reader. final public (B) ISOStart_ReleaseNotes.doc

RELEASE-NOTES. ID ISOStart Demoprogram for. OBID i-scan Reader. final public (B) ISOStart_ReleaseNotes.doc RELEASE-NOTES ID ISOStart 2011 Demoprogram for OBID i-scan Reader final public (B) 2011-11-30 ISOStart_ReleaseNotes.doc Copyright 2003-2011 by FEIG ELECTRONIC GmbH Lange Straße 4 D-35781 Weilburg-Waldhausen

More information

ID CPR40.xx-xx. History of Firmware Revisions. Desktop Reader: ID CPR40.30-USB ID CPR40.30-SUSB ID CPR40.30-A. Reader Module:

ID CPR40.xx-xx. History of Firmware Revisions. Desktop Reader: ID CPR40.30-USB ID CPR40.30-SUSB ID CPR40.30-A. Reader Module: RELEASE-NOTE ID CPR40.xx-xx History of Firmware Revisions Desktop Reader: Reader Module: final public 2012-03-06 SWRN CPR40xx.doc Copyright 2012 by FEIG ELECTRONIC GmbH Lange Strasse 4 D-35781 Weilburg-Waldhausen

More information

APPLICATION-NOTE. OBID i-scan ID ISC.M02-B. Firmware Update. from Firmware Version 1.1 and higher. final public (B) N e-ID-B.

APPLICATION-NOTE. OBID i-scan ID ISC.M02-B. Firmware Update. from Firmware Version 1.1 and higher. final public (B) N e-ID-B. OBID i-scan APPLICATION-NOTE ID ISC.M02-B Firmware Update from Firmware Version 1.1 and higher final public (B) 2003-08-15 N21101-2e-ID-B.doc Copyright 2003 by FEIG ELECTRONIC GmbH Lange Strasse 4 D-35781

More information

ID ISC.LR200-A/B First Steps to get the Serial Number from a Transponder

ID ISC.LR200-A/B First Steps to get the Serial Number from a Transponder 1 Preparation ID ISC.LR200-A/B First Steps to get the Serial Number from a Transponder (Using ISOStart Version 6.0 or higher) 1 Connect the ID ISC.LR200 via RS232 or RS485 to the PC 2 Install the Demo

More information

ID CPR.M02 / ID CPR.02. Firmware Update

ID CPR.M02 / ID CPR.02. Firmware Update OBID classic-pro APPLICATION-NOTE ID CPR.M02 / ID CPR.02 Firmware Update From Firmware Version 1.01 or higher final public (B) 2007-01-03 N30201-2e-ID-B.doc Copyright 2003 by FEIG ELECTRONIC GmbH Lange

More information

ID CPRStart 2012 MANUAL V Demo Program for OBID classic-pro Reader. Windows XP (32 bit) / Vista (32/64 bit) / Windows 7 (32/64 bit)

ID CPRStart 2012 MANUAL V Demo Program for OBID classic-pro Reader. Windows XP (32 bit) / Vista (32/64 bit) / Windows 7 (32/64 bit) MANUAL ID CPRStart 2012 V9.01.01 Demo Program for OBID classic-pro Reader Windows XP (32 bit) / Vista (32/64 bit) / Windows 7 (32/64 bit) final public (B) 2012-02-09 H80401-6e-ID-B.doc Copyright 2002-2012

More information

FPGA ACC

FPGA ACC MANUAL ID ISC.LR2000 Standard-Reader from Firmware-Version RFC 1.17.00 FPGA 2.00.04 ACC 2.02.00 final public (B) 2011-04-21 H60700-3e-ID-B.doc Copyright 2006-2011 by FEIG ELECTRONIC GmbH Lange Strasse

More information

ID ISC.MR101-A ID ISC.PR101-A

ID ISC.MR101-A ID ISC.PR101-A OBID i-scan INSTALLATION ID ISC.MR101-A ID ISC.PR101-A final public (B) 2007-09-25 M50803-4e-ID-B.doc Copyright 2007 by FEIG ELECTRONIC GmbH Lange Strasse 4 D-35781 Weilburg-Waldhausen Tel.: +49 6471 3109-0

More information

MANUAL. OBID i-scan ID ISC.MR200. Standard-Reader. from Firmware-Version final public (B) H e-ID-B.doc

MANUAL. OBID i-scan ID ISC.MR200. Standard-Reader. from Firmware-Version final public (B) H e-ID-B.doc OBID i-scan MANUAL ID ISC.MR200 Standard-Reader from Firmware-Version 1.12 final public (B) 2008-05-26 H40801-5e-ID-B.doc Copyright 2004-2008 by FEIG ELECTRONIC GmbH Lange Strasse 4 D-35781 Weilburg-Waldhausen

More information

History of Firmware Revisions. i-scan. Standard-Reader ID ISCLR200. SWRN ISCLR200 V5.04.doc

History of Firmware Revisions. i-scan. Standard-Reader ID ISCLR200. SWRN ISCLR200 V5.04.doc History of Firmware Revisions i-scan Standard-Reader ID ISCLR200 SWRN ISCLR200 V5.04.doc NOTE Copyright 2000-2006 by FEIG ELECTRONIC GmbH Lange Strasse 4 35781 Weilburg-Waldhausen http://www.feig.de Edition:

More information

MANUAL ID ISC.MR102. Standard-Reader. from Firmware-Version 0.4 or higher. Preliminary public (B) H e-ID-B.doc

MANUAL ID ISC.MR102. Standard-Reader. from Firmware-Version 0.4 or higher. Preliminary public (B) H e-ID-B.doc MANUAL ID ISC.MR102 Standard-Reader from Firmware-Version 0.4 or higher Preliminary public (B) 2011-04-12 H01113-0e-ID-B.doc Copyright 2011 by FEIG ELECTRONIC GmbH Lange Strasse 4 D-35781 Weilburg-Waldhausen

More information

ID ISC.LRU1000 MANUAL. OBID i-scan. Standard-Reader. Firmware-Version 1.09 RF Controller. and 1.04 ACC. and higher

ID ISC.LRU1000 MANUAL. OBID i-scan. Standard-Reader. Firmware-Version 1.09 RF Controller. and 1.04 ACC. and higher OBID i-scan MANUAL ID ISC.LRU1000 Standard-Reader Firmware-Version 1.09 RF Controller and 1.04 ACC and higher final public (B) 2006-05-31 H40802-3e-ID-B.doc Copyright 2004-2006 by FEIG ELECTRONIC GmbH

More information

Connecting Software to OBID OBID Development Group

Connecting Software to OBID OBID Development Group Connecting Software to OBID FECOM_OpenPort FECOM_ClosePort FECOM_GetPortList FECOM_GetPortHnd FECOM_GetDLLVersion FECOM_GetPortPara FECOM_SetPortPara FECOM_Transceive FECOM_Transmit FECOM_Receive FECOM.DLL

More information

ID CPR40.xx-Family. Desktop Reader: ID CPR40.30-USB ID CPR40.30-SUSB ID CPR40.30-A. Reader Module:

ID CPR40.xx-Family. Desktop Reader: ID CPR40.30-USB ID CPR40.30-SUSB ID CPR40.30-A. Reader Module: MANUAL ID CPR40.xx-Family Desktop Reader: ID CPR40.30-USB ID CPR40.30-SUSB ID CPR40.30-A Reader Module: ID CPR40.00-CD 3.3 ID CPR40.01-CD 3.3 ID CPR40.00-A ID CPR40.01-A ID CPR40.00-CDUSB ID CPR40.01-CDUSB

More information

MOUNTING ID ISC.MR102. Mounting Instruction for all variants. final public (B) M e-ID.doc

MOUNTING ID ISC.MR102. Mounting Instruction for all variants. final public (B) M e-ID.doc MOUNTING ID ISC.MR102 Mounting Instruction for all variants final public (B) 2011-11-08 M01210-2e-ID.doc Copyright 2011 by FEIG ELECTRONIC GmbH Lange Strasse 4 D-35781 Weilburg Tel.: +49 6471 3109-0 http://www.feig.de

More information

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GSM Module Firmware Upgrade User Guide for Production GSM_Module_FW_Upgrade_ User_Guide_for_Production_V1.0 Document Title GSM Module Firmware Upgrade User Guide for Production Version

More information

Firmware Upgrade Tool Lite User Guide. Firmware_Upgrade_Tool_Lite_V1.1

Firmware Upgrade Tool Lite User Guide. Firmware_Upgrade_Tool_Lite_V1.1 Firmware Upgrade Tool Lite User Guide Firmware_Upgrade_Tool_Lite_V1.1 Document Title Firmware Upgrade Tool Lite User Guide Version 1.1 Date 2010-12-24 Status Document Control ID Release Firmware_Upgrade_Tool_Lite_V1.1

More information

Sirius Lighting Design Connection Guide

Sirius Lighting Design Connection Guide Sirius Lighting Design Connection Guide Updated 26 July, 2017 Copyrightc 2017 LG Innotek Co., Ltd. Table of Contents 1 Introduction... 1-- 3-2 System requirements... 2-- 4-3 UART Interface board... 3--

More information

PLC-ANALYZER pro 5. PLC-Driver GE Fanuc Series 90 / VersaMax / Nano / Micro PG-Interface (SNP) Driver-Addendum

PLC-ANALYZER pro 5. PLC-Driver GE Fanuc Series 90 / VersaMax / Nano / Micro PG-Interface (SNP) Driver-Addendum Driver-Addendum PLC-Driver GE Fanuc Series 90 / VersaMax / Nano / Micro PG-Interface (SNP) www.autem.de PLC-ANALYZER pro 5 The logic analyzer for programmable logic controls Driver Addendum GE Fanuc Series

More information

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GSM Delta Package Firmware Update Application Notes GSM_FOTA_AN_V1.0 Document Title GSM Delta Package Firmware Update Application Notes Version 1.0 Date 2010-09-07 Status Document Control

More information

UART. SIM5360 UART Multiplexer Application Note. SIM5360_UART_Multiplexer_Application_Note_V

UART. SIM5360 UART Multiplexer Application Note. SIM5360_UART_Multiplexer_Application_Note_V UART SIM5360 UART Multiplexer Application Note 1 Document Title: SIM5360 UART Multiplexer Application Note Version: 0.01 Date: 2014-05-30 Status: Document Control ID: Release SIM5360_UART_Multiplexer_Application_Note_V0.01

More information

GSM. Quectel Cellular Engine. Firmware Update Application Note. Fw_Update_Application_Note_V3.1

GSM. Quectel Cellular Engine. Firmware Update Application Note. Fw_Update_Application_Note_V3.1 GSM Cellular Engine Firmware Update Application Note Fw_Update_Application_Note_V3.1 Document Title Firmware Update Application Note Version 3.1 Date 2012-03-08 Status Document Control ID Released Fw_Update_Application_Note_V3.1

More information

UART Dload Application Note

UART Dload Application Note UART Dload Application Note Document Title: SIM52xx UART Dload Application Note Version: 0.02 Date: 2013-02-26 Status: Document Control ID: Release SIM52xx_UART_Dload_Application_Note_V0.02 General Notes

More information

Embedded Simply Blue Application Note

Embedded Simply Blue Application Note Embedded Simply Blue Application Note 1.0 Introduction SB_Custom has been created to give an embedded example of a Simply Blue device (LMX9820A, LMX9830 or LMX9838 based) communicating with a 16 bits microprocessor

More information

Delta Package Update Application Note

Delta Package Update Application Note Delta Package Update Application Note Document Title: SIM52xx Delta Package Update Application Note Version: 0.01 Date: 2011-06-22 Status: Document Control ID: Release SIM52xx_Delta_Package_Update_Application_Note_V0.01

More information

SIMCom_SIM800H_EAT_flash_Tool _User Manual_V1.01

SIMCom_SIM800H_EAT_flash_Tool _User Manual_V1.01 SIMCom_SIM800H_EAT_flash_Tool _User Manual_V1.01 Document Title: SIMCom_SIM800H_EAT_flash_Tool_User Manual Version: 1.01 Date: 2013-08-27 10Status: Document Control ID: Draft AN_SIMCom_SIM800H_EAT_flash_Tool_App

More information

LMX9838 Cable Replacement

LMX9838 Cable Replacement LMX9838 Cable Replacement 1.0 Introduction Bluetooth technology offers a wide range of features and profiles in order to support many different applications. Even though Bluetooth is very flexible, it

More information

SpinWarrior Dynamic Library V1.5 for Windows and Linux

SpinWarrior Dynamic Library V1.5 for Windows and Linux SpinWarrior Dynamic Library V1.5 Applicable for all SpinWarriors Overview The SpinWarrior Kit Dynamic Library provides a simple API to access all SpinWarrior products from Code Mercenaries. It is intended

More information

IO-Warrior Dynamic Library V1.5 for Windows

IO-Warrior Dynamic Library V1.5 for Windows V1.5 for Windows Applicable for all IO-Warriors Overview The IO-Warrior Kit Dynamic Library provides a simple API to access all IO-Warrior products from Code Mercenaries. It is intended to be used with

More information

0.1. [0x8A] Read Configuration

0.1. [0x8A] Read Configuration 0.1. [0x8A] Read Configuration The Read Configuration Protocol is defined to query the complete or parts of reader configuration. This protocol is an extension of [0x80] Read Configuration and realizes

More information

Manual. TC3 Virtual Serial COM. TwinCAT 3. Version: Date: Order No.: TF 6360

Manual. TC3 Virtual Serial COM. TwinCAT 3. Version: Date: Order No.: TF 6360 Manual TC3 Virtual Serial COM TwinCAT 3 Version: Date: Order No.: 1.1 2018-05-02 TF 6360 Table of Contents Table of Contents 1 Foreword... 5 1.1 Notes on the documentation... 5 1.2 Safety instructions...

More information

MOBY D C/C++ MDWAPI. Programming instructions. General information Table of Contents SLG D10. Overview 1. Configuration parameters 2

MOBY D C/C++ MDWAPI. Programming instructions. General information Table of Contents SLG D10. Overview 1. Configuration parameters 2 General information Table of Contents MOBY D Programming instructions SLG D10 Overview 1 Configuration parameters 2 Description of protocols 3 SLG D11/D12 Overview 4 Configuration parameters 5 Description

More information

Bootloader Firmware Update Protocol and Procedure

Bootloader Firmware Update Protocol and Procedure MODULE FOR STEPPER MOTORS Bootloader Firmware Update Protocol and Procedure Valid for TMCM-1110 steprocker This application note will give a brief overview of the firmware update procedure and the communication

More information

SIM900_DTMF EmbeddedAT Application Note_V1.01

SIM900_DTMF EmbeddedAT Application Note_V1.01 SIM900_DTMF EmbeddedAT Application Note_V1.01 Document Title: SIM900_DTMF Embedded AT Application Note Version: 1.01 Date: 2012-02-07 Status: Document Control ID: Release SIM900_DTMF Embedded AT_Application

More information

How to use Linux driver

How to use Linux driver How to use Linux driver - 1 - Document Title: How to use Linux driver Version: 1.2 Date: 2015-12-23 Status: Author Release aaron General Notes SIMCom offers this information as a service to its customers,

More information

AN022: The Bootloader Protocol

AN022: The Bootloader Protocol APPLICATION NOTE AN022: The Bootloader Protocol Document Revision V2.00 2018-APR-04 This application note describes the protocol used to update the firmware of a Trinamic module or a Trinamic evaluation

More information

User - Data Sheet: Transponder (R/W) ID DTx.C. 32 Byte of that:

User - Data Sheet: Transponder (R/W) ID DTx.C. 32 Byte of that: R O B I D User - Data Sheet: Transponder (R/W) ID DTx.C transponder write- / readable password protected data crypto-function (data-current coding) configuration of working modes configuration of memory

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

Firmware Update Tool Software Program for Updating the Firmware for the SECUTEST BASE, BASE10 and PRO Test Instruments

Firmware Update Tool Software Program for Updating the Firmware for the SECUTEST BASE, BASE10 and PRO Test Instruments Operating Instructions Firmware Update Tool Software Program for Updating the Firmware for the SECUTEST BASE, BASE10 and PRO Test Instruments 3-349-793-03 4/6.15 Contents Page 1 Information on the Application...

More information

EK20-IDGIANO USER MANUAL

EK20-IDGIANO USER MANUAL RFID TRANSPONDER TECHNOLOGY DOC. 262-R1-ENG EK20-IDGIANO USER MANUAL EK20-IDGIANO (here named READER) is a mobile device for Traceability applications. Features: -Operates with one-two (LF-HF) as your

More information

ACR122S. Serial NFC Reader. Application Programming Interface V2.03. Subject to change without prior notice.

ACR122S. Serial NFC Reader. Application Programming Interface V2.03. Subject to change without prior notice. ACR122S Serial NFC Reader Application Programming Interface V2.03 Subject to change without prior notice Table of Contents 1.0. Introduction... 3 2.0. Features... 4 3.0. Application Programming Interface

More information

DGILib USER GUIDE Atmel-42771A-DGILib_User Guide-09/2016

DGILib USER GUIDE Atmel-42771A-DGILib_User Guide-09/2016 DGILib USER GUIDE Table of Contents 1. Description...3 2. API...4 2.1. Discovery...4 2.1.1. initialize_status_change_notification... 4 2.1.2. uninitialize_status_change_notification... 4 2.1.3. register_for_device_status_change_notifications...4

More information

CodeWarrior Kernel-Aware Debug API

CodeWarrior Kernel-Aware Debug API CodeWarrior Kernel-Aware Debug API Revised: 17 October 2006 Freescale and the Freescale logo are trademarks of Freescale Semiconductor, Inc. CodeWarrior is a trademark or registered trademark of Freescale

More information

This user guide describes how to run the Atmel ATWINC3400 Bluetooth Low Energy (BLE) Provisioning demo from out-of-box conditions.

This user guide describes how to run the Atmel ATWINC3400 Bluetooth Low Energy (BLE) Provisioning demo from out-of-box conditions. ATWINC3400 BLE ATWINC3400 BLE Provisioning - Setup and Usage USER GUIDE Introduction This user guide describes how to run the Atmel ATWINC3400 Bluetooth Low Energy (BLE) Provisioning demo from out-of-box

More information

DF FA SE. SIPLUS RIC IEConS7. File Transfer Version V1.6

DF FA SE. SIPLUS RIC IEConS7. File Transfer Version V1.6 DF FA SE SIPLUS RIC IEConS7 File Transfer Version V1.6 Functional description File Transfer DF FA SE Safety instructions Warning notices These Operating Instructions contain information that you should

More information

Application Note. a HART Tool-routing with Emerson AMS HART over TH LINK PROFIBUS for Asset Management 1.0.0

Application Note. a HART Tool-routing with Emerson AMS HART over TH LINK PROFIBUS for Asset Management 1.0.0 Application Note a116110 HART over TH LINK PROFIBUS for Asset Management 2 Application Note a116110 2016 by WAGO Kontakttechnik GmbH & Co. KG All rights reserved. WAGO Kontakttechnik GmbH & Co. KG Hansastraße

More information

IIC Driver for the MC9S08GW64

IIC Driver for the MC9S08GW64 Freescale Semiconductor Application Note Document Number: AN4158 Rev. 0, 8/2010 IIC Driver for the MC9S08GW64 by: Tanya Malik Reference Design and Applications Group Noida India 1 Introduction This document

More information

Preface 1. Product Characteristics 3 SIPLUS CMS4000 ION SIMATIC TDC T001 Manual Software Installation 4

Preface 1. Product Characteristics 3 SIPLUS CMS4000 ION SIMATIC TDC T001 Manual Software Installation 4 4000 ION SIMATIC TDC T001 Manual Preface 1 Scope of Delivery 2 Product Characteristics 3 4000 ION SIMATIC TDC T001 Manual Software Installation 4 Software Engineering 5 Block Description 6 References 7

More information

PSoC 4 Current Digital to Analog Converter (IDAC)

PSoC 4 Current Digital to Analog Converter (IDAC) PSoC Creator Component Datasheet PSoC 4 Current Digital to Analog Converter (IDAC) 1.10 Features 7 or 8-bit resolution 7-bit range: 0 to 152.4 or 304.8 µa 8-bit range: 0 to 306 or 612 µa Current sink or

More information

UIO-HMI Digital I/Os & DAQ Board User Manual

UIO-HMI Digital I/Os & DAQ Board User Manual UIO-HMI-24 39 Digital I/Os & DAQ Board User Manual /2 2 UIO-HMI-24 Digital Inputs/Outputs & DAQ board with 39 channels and USB/Bluetooth/RF connectivity. Welcome to the world of Computer Automation. This

More information

UART Application Note

UART Application Note UART Application Note Document Title: SIM52xx Application Note Version: 0.01 Date: 2011-06-22 Status: Document Control ID: Release SIM52xx Application_Note_V0.01 General Notes Simcom offers this information

More information

Communication of passive RFID Reader and. FOX3-2G/3G/4G series via RS-232 serial link. and its use to identify RFID tags in

Communication of passive RFID Reader and. FOX3-2G/3G/4G series via RS-232 serial link. and its use to identify RFID tags in THIS DOCUMENT IS AVAILABLE AT HTTP://WWW.FALCOM.DE/ Communication of passive RFID Reader and FOX3-2G/3G/4G series via RS-232 serial link and its use to identify RFID tags in transportation and access management

More information

Installing FTDI Device Drivers for the QF4A512-DK under Windows XP

Installing FTDI Device Drivers for the QF4A512-DK under Windows XP APPLICATION NOTE QFAN027 Installing FTDI Device Drivers for the QF4A512-DK under Windows XP 1) Introduction On first use of the QF4A512-DK development kit, Windows-based computers fail to correctly install

More information

SIMCom_3G_Linux_Driver_Applica tion Note_V1.00

SIMCom_3G_Linux_Driver_Applica tion Note_V1.00 _Applica tion Note_V1.00 Document Title: _Application Note Version: 1.00 Date: 2013-12-25 Status: Document Control ID: Release _Application Note_V1.00 General Notes SIMCom offers this information as a

More information

I-7565-CPM Intelligent USB/CANopen Master Module

I-7565-CPM Intelligent USB/CANopen Master Module I-7565-CPM Intelligent USB/CANopen Master Module User s Manual Warranty All products manufactured by ICP DAS are warranted against defective materials for a period of one year from the date of delivery

More information

F²MC-8FX Family MB95200H/210H Series Capacitance Touch Sensor

F²MC-8FX Family MB95200H/210H Series Capacitance Touch Sensor AN205062 Associated Part Family: MB95200H/210H Series This Application Note describes Cypress TSC solution, and explains how to use TSC library and TSC GUI. Contents 1 Introduction... 1 2 Cypress Capacitance

More information

HTTP Application Note

HTTP Application Note HTTP Application Note Document Title: SIM52xx HTTP Application Note Version: 0.02 Date: 2010-04-29 Status: Document Control ID: Release SIM52xx_HTTP_Application_Note_V0.02 General Notes Simcom offers this

More information

Ultrabeam RCU-06 USB port description

Ultrabeam RCU-06 USB port description Abstract The Ultrabeam RCU-06 is an electronic controller used in a variety of Ultrabeam antennas. The main task of the controller is to tune the antenna by moving the (radiating) elements, based on the

More information

EC20 SSL AT Commands Manual

EC20 SSL AT Commands Manual EC20 SSL AT Commands Manual LTE Module Series Rev. EC20_SSL_AT_Commands_Manual_V1.0 Date: 2015-07-02 www.quectel.com Our aim is to provide customers with timely and comprehensive service. For any assistance,

More information

DSPLib. DSP56xxx Interface Libraries. A Product of Domain Technologies, Inc.

DSPLib. DSP56xxx Interface Libraries. A Product of Domain Technologies, Inc. DSPLib DSP56xxx Interface Libraries A Product of Domain Technologies, Inc. DSP56xxx Interface Libraries January 21, 1998 DSPs supported by this software: DSP560xx DSP561xx DSP56xx DSP566xx DSP568xx MC6856

More information

OSDP V2 reader protocol DOOR CONTROLLER XMP-K32 XMP-K12-19 / XMP-K12EX-19 XMP-K12 / XMP-K12EX

OSDP V2 reader protocol DOOR CONTROLLER XMP-K32 XMP-K12-19 / XMP-K12EX-19 XMP-K12 / XMP-K12EX XMP-BABYLON OSDP V2 reader protocol DOOR CONTROLLER XMP-K32 XMP-K32SX / XMP-K32EX XMP-K32SX-19 / XMP-K32EX-19 XMP-K12 / XMP-K12EX XMP-K12-19 / XMP-K12EX-19 Version: 1.0 Date: 29.05.2017 File: EQuick_Guide_OSDP_V2_protocol

More information

MOD-RFID1356 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, May 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved

MOD-RFID1356 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, May 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved MOD-RFID1356 User Manual All boards produced by Olimex are ROHS compliant Rev.A, May 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved INTRODUCTION: FEATURES: MOD-RFID1356 is an RFID station, able

More information

Cypress BLE-Beacon ios App User Guide

Cypress BLE-Beacon ios App User Guide Cypress BLE-Beacon ios App User Guide Doc. No. 002-12101 Rev. *A Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 http://www.cypress.com Copyrights Copyrights Cypress Semiconductor Corporation,

More information

Programming Sequences for the QF1Da512

Programming Sequences for the QF1Da512 APPLICATION NOTE QFAN023 Programming Sequences for the QF1Da512 1) Introduction The QF1Da512 SavFIRe is an extremely powerful, flexible, and inexpensive FIR engine. It has a straightforward SPI interface

More information

DTM for Hilscher DeviceNet Master Devices

DTM for Hilscher DeviceNet Master Devices tgg Operating Instruction Manual DTM for Hilscher DeviceNet Master Devices Configuration of Hilscher Master Devices Hilscher Gesellschaft für Systemautomation mbh www.hilscher.com DOC070403OI12EN Revision

More information

MOD-RFID125 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved

MOD-RFID125 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved MOD-RFID125 User Manual All boards produced by Olimex are ROHS compliant Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved INTRODUCTION: FEATURES: MOD-RFID125 is an RFID station,

More information

MOD-RFID125-BOX user's manual

MOD-RFID125-BOX user's manual MOD-RFID125-BOX user's manual All boards produced by Olimex are ROHS compliant Rev.C, February 2013 Copyright(c) 2011, OLIMEX Ltd, All rights reserved Page 1 DISCLAIMER 2013 Olimex Ltd. Olimex, logo and

More information

Technical Documentation

Technical Documentation Technical Documentation for metratec QR15 HF RFID Module Date: June 2015 Version: 1.8 Technical Documentation metratec QR15 Page 1 of 14 Table of Contents 1 General Information / Security Advice...3 1.1

More information

SCI Driver for the MC9S08GW64

SCI Driver for the MC9S08GW64 Freescale Semiconductor Application Note Document Number: AN4161 Rev. 0,8/2010 SCI Driver for the MC9S08GW64 by: Tanya Malik Reference Design and Applications Group Noida India 1 Introduction This document

More information

MOD-RFID125-BOX User Manual

MOD-RFID125-BOX User Manual MOD-RFID125-BOX User Manual All boards produced by Olimex are ROHS compliant Rev.B, May 2011 Copyright(c) 2011, OLIMEX Ltd, All rights reserved Page 1 INTRODUCTION: FEATURES: MOD-RFID125-BOX is an RFID

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

Digital Logic Gates. Features. General Description. Input/Output Connections. When to Use a Logic Gate. Input 1. Input 2. Inputs 3-8 * 1.

Digital Logic Gates. Features. General Description. Input/Output Connections. When to Use a Logic Gate. Input 1. Input 2. Inputs 3-8 * 1. 1.0 Features Industry-standard logic gates Configurable number of inputs up to 8 Optional array of gates General Description Logic gates provide basic boolean operations. The output of a logic gate is

More information

Manual. TC3 Power Monitoring. TwinCAT 3. Version: Date: Order No.: TF3650

Manual. TC3 Power Monitoring. TwinCAT 3. Version: Date: Order No.: TF3650 Manual TC3 Power Monitoring TwinCAT 3 Version: Date: Order No.: 1.1 2019-01-03 TF3650 Table of contents Table of contents 1 Foreword... 5 1.1 Notes on the documentation... 5 1.2 Safety instructions...

More information

Manual. PLC Lib: Tc2_DMX. TwinCAT 3. Version: Date:

Manual. PLC Lib: Tc2_DMX. TwinCAT 3. Version: Date: Manual PLC Lib: Tc2_DMX TwinCAT 3 Version: Date: 1.5 2017-12-07 Table of contents Table of contents 1 Foreword... 5 1.1 Notes on the documentation... 5 1.2 Safety instructions... 6 2 Introduction... 7

More information

Inventorying Microsoft Azure. Inventorying Microsoft Azure Information with Docusnap X

Inventorying Microsoft Azure. Inventorying Microsoft Azure Information with Docusnap X Inventorying Microsoft Azure Inventorying Microsoft Azure Information with Docusnap X TITLE Inventorying Microsoft Azure AUTHOR Docusnap Consulting DATE 2/7/2018 VERSION 1.0 valid from January 25, 2018

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

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. PSoC Creator Component Datasheet Status Register 1.80 Features Up to 8-bit Status Register Interrupt support General Description The Status Register allows the firmware to read digital signals. When to

More information

DTM for EtherNet/IP Adapter Devices

DTM for EtherNet/IP Adapter Devices Operating Instruction Manual DTM for EtherNet/IP Adapter Devices Configuration of EtherNet/IP Adapter Devices Hilscher Gesellschaft für Systemautomation mbh www.hilscher.com DOC061202OI09EN Revision 9

More information

STD_CU43USBSW_V1.0E. CUnet (MKY43) USB Unit. CU-43USB Software Manual

STD_CU43USBSW_V1.0E. CUnet (MKY43) USB Unit. CU-43USB Software Manual STD_CU43USBSW_V1.0E CUnet (MKY43) USB Unit CU-43USB Software Manual Introduction This document describes API included with CU-43USB unit. Before using the product, please check the latest information on

More information

Automatic reload of the period to the count register on terminal count

Automatic reload of the period to the count register on terminal count 1.0 Features 7-bit read/write period register 7-bit count register that is read/write Automatic reload of the period to the count register on terminal count Routed load and enable signals General Description

More information

DTM for Hilscher CANopen Master Devices

DTM for Hilscher CANopen Master Devices Operating Instruction Manual DTM for Hilscher CANopen Master Devices Configuration of Hilscher Master Devices Hilscher Gesellschaft für Systemautomation mbh www.hilscher.com DOC070402OI14EN Revision 14

More information

GSM. Quectel Cellular Engine. GSM FILE AT Commands GSM_FILE _ATC_V1.4

GSM. Quectel Cellular Engine. GSM FILE AT Commands GSM_FILE _ATC_V1.4 GSM Cellular Engine GSM FILE AT Commands GSM_FILE _ATC_V1.4 Document Title GSM FILE AT Commands Version 1.4 Date 2012-06-13 Status Released Document Control ID GSM_FILE _ATC_V1.4 General Notes offers this

More information

DTM for Hilscher EtherCAT Master Device

DTM for Hilscher EtherCAT Master Device Operating Instruction Manual DTM for Hilscher EtherCAT Master Device Configuration of Hilscher Master Devices Hilscher Gesellschaft für Systemautomation mbh www.hilscher.com DOC080404OI07EN Revision 7

More information

Programming Sequences for the QF1Da512

Programming Sequences for the QF1Da512 APPLICATION NOTE QFAN023 Programming Sequences for the QF1Da512 1) Introduction The QF1Da512 SavFIRe is an extremely powerful, flexible, and inexpensive FIR engine. It has a straightforward SPI interface

More information

FACTORY AUTOMATION MANUAL MAH* FIRMWARE UPGRADE INSTRUCTIONS

FACTORY AUTOMATION MANUAL MAH* FIRMWARE UPGRADE INSTRUCTIONS FACTORY AUTOMATION MANUAL MAH* FIRMWARE UPGRADE INSTRUCTIONS With regard to the supply of products, the current issue of the following document is applicable: The General Terms of Delivery for Products

More information

AN1527 APPLICATION NOTE

AN1527 APPLICATION NOTE AN1527 APPLICATION NOTE DEVELOPING A USB SMARTCARD READER WITH ST7SCR by Microcontroller Division Applications INTRODUCTION This document describes a firmware implementation developed by STMicroelectronics

More information

Manual. PLC Lib: Tc2_Drive. TwinCAT 3. Version: Date:

Manual. PLC Lib: Tc2_Drive. TwinCAT 3. Version: Date: Manual TwinCAT 3 Version: Date: 1.0 2016-05-30 Table of contents Table of contents 1 Foreword... 4 1.1 Notes on the documentation... 4 1.2 Safety instructions... 5 2 Overview... 6 3 ST_DriveRef for use

More information

Programming and Evaluation Tool for Serial EEPROMs

Programming and Evaluation Tool for Serial EEPROMs EasyPro 3.2 Evaluation Board User's Manual EVAL BOARD USER S MANUAL Programming and Evaluation Tool for Serial EEPROMs What is EasyPRO? EasyPRO is an easy-to-use, software-driven device programmer that

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

Documentation for. TwinSAFE User. Tool to modify the User Administration of a TwinSAFE Logic. Version: Date:

Documentation for. TwinSAFE User. Tool to modify the User Administration of a TwinSAFE Logic. Version: Date: Documentation for TwinSAFE User Tool to modify the User Administration of a TwinSAFE Logic Version: Date: 1.2.0 2017-11-02 Table of contents Table of contents 1 Foreword... 5 1.1 Notes on the documentation...

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

SICAM SICAM FCM Configurator

SICAM SICAM FCM Configurator Preface Open Source Software SICAM SICAM FCM Configurator Table of Contents SICAM FCM Configurator 1 Index V02.10 Configuration and Operation E50417-H8940-C592-A3 i NOTE For your own safety, observe the

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