APPLICATION NOTE GR/GS64 General Purpose and Alternate Function I/O. Reference: WI_DEV_Gx64_APN_008 Revision: 001 Date: 2006/12/15

Size: px
Start display at page:

Download "APPLICATION NOTE GR/GS64 General Purpose and Alternate Function I/O. Reference: WI_DEV_Gx64_APN_008 Revision: 001 Date: 2006/12/15"

Transcription

1 Reference: WI_DEV_Gx64_APN_008 Revision: 001 Date: 2006/12/15

2 The information contained in this document is the proprietary information of Wavecom Inc. The contents are confidential and any disclosure to persons other than the officers, employees, agents or subcontractors of the owner or licensee of this document, without the prior written consent of Wavecom Inc, is strictly prohibited. Further, no portion of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic or mechanical, including photocopying and recording, without the prior written consent of Wavecom Inc, the copyright holder. First Edition (December 2006) Wavecom Inc publishes this manual without making any warranty as to the content contained herein. Further Wavecom Inc reserves the right to make modifications, additions and deletions to this manual due to typographical errors, inaccurate information, or improvements to programs and/or equipment at any time and without notice. Such changes will, nevertheless be incorporated into new editions of this manual. All rights reserved. Wavecom Inc, 2006 Publication number: Printed in US Page: 2/13

3 Table of Contents 1 Introduction LOGIC INTERFACE VOLTAGE GPIO vs. Alternate I/O Functions DEFAULT SETTINGS AT*GPIO OR ALTERNATE FUNCTION SELECTION Using GPIO USING GPIO FOR CONTROL USING GPIO FOR MONITORING Using Alternate I/O functions UART 1 MODEM CONTROL ACTIVITY INDICATION SD/MMC SUPPORT I2C SUPPORT Appendix A -- I/O Pins by GR/GS64 Device Type Page: 3/13

4 1 Introduction The GR/GS64 family of Wireless CPUs is designed to provide a rich and flexible set of physical interfaces. These interfaces allow the application designer to integrate GR/GS64 Wireless CPUs into the widest possible variety of applications and still meet cost, power and size constraints. GR/GS64 general purpose input and output (GPIO) pins represent the simplest of digital interfaces single line digital signals. GPIO pins can be used to control or monitor devices such as relays, contacts, actuators and lamps with appropriate signal conditioning. GR/GS64 Wireless CPUs provide as many as thirty-three GPIO pins. GR/GS64 Wireless CPUs also provide up to three analogue-to-digital converters. These convert analogue voltage levels to digital measurements. With appropriate transducers, applications can use the measurements to monitor a wide variety of physical conditions like temperatures, pressures or fluid levels. 1.1 Logic Interface Voltage All GPIO interfaces are referenced to the voltage level available on system connectors VREF-pin, unless otherwise is stated in the units Integrators Manual. GR/GS64 Wireless CPU type VREF Direction VREF Voltage Level GS64 Output from Wireless CPU 1.8V GR64001 Output from Wireless CPU 2.8V GR64002 Input to Wireless CPU 1.8V 5.0V Under no circumstances can a logic signal exceed VREF. Level translators must be incorporated if the application logic voltage is different than that of the Wireless CPU. Failure to heed to this requirement can lead to unexpected behaviour and may permanently damage the Wireless CPU. Examples of possible level translators to use consist of, but are not limited to: Maxim ST MAX3000 family ST2378E Page: 4/13

5 2 GPIO vs. Alternate I/O Functions Many of the GPIO pins can be configured to perform dedicated operations such as activity indication, modem control, SD/MMC memory support or I 2 C. These dedicated operations are known as alternate I/O functions. While the number of GPIO and dedicated tasks that can be active simultaneously is limited by this technique, the Wireless CPU size, power consumption and pin count are kept small with no decrease in flexibility to meet application requirements. Section 3 describes how to use and control GPIO pins. Section 4 describes available alternate I/O functions. 2.1 Default Settings The factory default setting of all IO s is as input signals and pulled up. If a signal is changed by the application and stored with AT&W the change is stored so that the next time the Wireless CPU is powered up the IO will maintain the new customer setting. 2.2 At*GPIO or Alternate Function Selection The integrator should understand that the use of a pin for GPIO or an alternate function is exclusive. If an attempt is made to issue GPIO commands on a pin that is enabled for an alternate I/O function, the GPIO command will return an error indication. When the alternate function has been disabled, GPIO commands may once again be issued without error on the pin. Please consult the table in Appendix A for the GR/GS64 Wireless CPU type that is used. Each table describes the pins available for GPIO use and indicates if a pin is part of an alternate function. Select pins for GPIO that do not belong to an alternate function that is also needed. For example, suppose that two GPIO pins are needed in a GR64 application, one to monitor a contact closure and another to control a relay. The application must also minimize power consumption, so the GR64 will be placed in standby mode periodically. Standby mode requires the use of the modem control lines which are an alternate function of the GPIO7-GPIO12 pins. Therefore, do not select the monitor and control pins from the GPIO7-GPIO12 group. In this example, we select GPIO1 to monitor the contact closure and GPIO2 to control the relay. Page: 5/13

6 3 Using GPIO 3.1 Using GPIO for Control GPIO pins are configured and controlled in software using the E2IO AT command. See the GR/GS64 AT Command Manual for a complete description of the E2IO command. To continue our example, the relay is controlled from the GPIO2 pin. From Table 2 in Appendix A, the E2IO signal name for GPIO2 is IO2. To control an external device using a GPIO, configure the pin for output then set the desired level. AT*E2IO=2, IO2,1 AT*E2IO=1, IO2,1 (configure GPIO2 for output) (assert GPIO2) The application can query the level of a GPIO pin, whether configured for input or output. AT*E2IO=0, IO2 *E2IO: 0,"IO2",1 (pin level is high) The application can also query whether a pin is configured for input or output. AT*E2IO=3,"IO2" *E2IO: 3,"IO2",1 (GPIO2 is configured for output) The configured direction of GPIO pins is saved in the profile. If the application saves the profile using AT&W command, the pins will be configured on subsequent Wireless CPU start-ups according to the directions set when the profile was saved. However, the external circuitry should be designed to act benignly if the control signal is not present or is configured for input. In this example, the application should select either the normally open or normally closed outputs of the relay to provide a benign start-up state. Page: 6/13

7 3.2 Using GPIO for Monitoring The contact closure is connected to GPIO1. From Table 1 in Appendix A, the E2IO signal name for GPIO1 is IO1. Configure the GPIO1 pin for input. AT*E2IO=2,"IO1",0 The application can query the level of a GPIO pin, whether configured for input or output. AT*E2IO=0, IO1 *E2IO: 0,"IO1",0 (pin level is low) Querying the level of a GPIO pin repeatedly can be wasteful, so the application can program GPIO pins as input triggers. When a pin is configured as a trigger, a change in the pin s level will cause a report to be issued on the AT command interface. Configure the GPIO1 pin as an input trigger. AT*E2IO=4, IO1,1 Now any changes in the level of the GPIO1 signal will cause a report. *E2IO: 4,"IO1",1 This technique can be quite useful in low-power applications. The Wireless CPU can be placed in standby mode and will awaken when a transition on a pin configured as an input trigger occurs. The application can query if a GPIO pin has been configured as an input trigger. AT*E2IO=5,"IO1" *E2IO: 5,"IO1",1 The input trigger feature can be disabled for a GPIO pin. No reports will subsequently be issued when a level change occurs on that pin. AT*E2IO=4, IO1,0 Page: 7/13

8 4 Using Alternate I/O functions The following sections describe the alternate I/O functions provided by GR/GS64 Wireless CPUs. 4.1 UART 1 modem control The UART 1 modem control alternate function provides full RS-232 modem control signals. Some of the reasons to select UART 1 modem control alternate function are: Flow control is typically required to prevent serial buffer overruns when highspeed UART data rates are used. Modem control enables the RTS/CTS hardware flow control mechanism. If standby mode is required for low power consumption, DTR and DSR are used for sleep/wake handshaking. The Ring Indicator signal can indicate receipt of incoming calls or messages. Plug-and-Play enumeration of serial devices requires modem control lines. If the application is using the Windows driver to control GR/GS64 Wireless CPUs, the UART 1 modem control alternate function must be enabled. By factory default, the UART 1 modem control alternate function is selected. The alternate function is disabled or enabled by using the *E2RS232 AT command. AT*E2RS232=2 (disables UART 1 modem control) AT*E2RS232=0 (enables UART 1 modem control) The *E2RS232 settings are not retained across power downs. If the application wishes to disable the UART 1 modem control alternate function, it must do so after each Wireless CPU restart. The application may then use the modem control pins for GPIO purposes. Page: 8/13

9 4.2 Activity Indication The LED signal can display Wireless CPU activity when its alternate function is enabled. This signal has historically been connected to an LED to provide a visual indication of Wireless CPU activity. The following table describes the activity indications if an LED is connected: LED indication Off On, steady Slow flashing Quick flashing Description Wireless CPU not powered on. Power is applied but the Wireless CPU is not registered on the network. Corresponds to CREG conditions 0, 2, and 4. The Wireless CPU is registered on the network. Corresponds to CREG conditions 1,5. The Wireless CPU has received an SMS message within the last 10 seconds. Slow flashing is characterized by a 30 ms pulse with a 2-second period. Quick flashing is characterized by a 200 ms on pulse with a 400 ms period. The quick flashing lasts for 10 seconds after the last SMS message was received. The activity indication alternate function for the LED signal can be enabled or disabled using the *E2LED AT command. AT*E2LED=1 (enables LED activity) AT*E2LED=0 (disables LED activity) The LED activity indication function selection is saved in the profile. The current selection can be retained across power downs if the AT&W command is used to save the profile to non-volatile storage. 4.3 SD/MMC support The GS64 Wireless CPU can act as either a secure digital (SD) or multimedia memory card (MMC) bus host. I/O pins GPIO25-GPIO33 are currently permanently configured for the SD/MMC alternate function and cannot be used as GPIO pins. Page: 9/13

10 4.4 I2C Support The GR/GS64 Wireless CPU can act as either an I2C or GPIO interface. I2C can be enabled or disabled using the AT*E2I2C AT command. AT*E2I2C=1 (enables I2C) AT*E2I2C=0 (disables I2C) Page: 10/13

11 Appendix A -- I/O Pins by GR/GS64 Device Type Table 1. GR64 I/O pins GR64 Function AT*E2IO Alt function GR4x Pin Primary Sig GPIO <io> section Equivalent 21 GPIO1 GPIO1 IO1 GPIO1 22 GPIO2 GPIO2 IO2 GPIO2 23 GPIO3 GPIO3 IO3 GPIO3 24 GPIO4 GPIO4 IO4 GPIO4 13 ADIN4 GPIO5 IO5 GPIO5 33 LED GPIO6 IO6 4.2 GPIO6 32 DSR1 GPIO7 IO7 4.1 GPO3 36 RI GPIO8 IO8 4.1 GPO2 39 RTS1 GPIO9 IO9 4.1 GPIO9 37 DTR1 GPIO10 IO GPI1 38 DCD1 GPIO11 IO GPO1 40 CTS1 GPIO12 IO GPO4 29 SDA GPIO13 IO SCL GPIO14 IO TD3 GPIO7 44 RD3 GPIO8 Page: 11/13

12 Table 2. GS64 I/O pins GS64 Function AT*E2IO Alt function Pin Primary Sig GPIO <io> section 40 GPIO1 GPIO1 IO1 41 GPIO2 GPIO2 IO2 43 GPIO3 GPIO3 IO3 44 GPIO4 GPIO4 IO4 45 SDA GPIO5 IO SCL GPIO6 IO GPIO7 GPIO7 IO7 50 GPIO8 GPIO8 IO GPIO9 GPIO9 IO9 53 RI GPIO10 IO DCD1 GPIO11 IO DTR1 GPIO12 IO DSR1 GPIO13 IO RTS1 GPIO14 IO CTS1 GPIO15 IO KEYROW1 GPIO16 IO16 84 KEYROW2 GPIO17 IO17 85 KEYROW3 GPIO18 IO18 86 KEYROW4 GPIO19 IO19 87 KEYROW5 GPIO20 IO20 88 KEYCOL1 GPIO21 IO21 89 KEYCOL2 GPIO22 IO22 90 KEYCOL3 GPIO23 IO23 91 KEYCOL4 GPIO24 IO24 74 MMCCLK GPIO25 IO MMCCMD GPIO26 IO MMCDAT0 GPIO27 IO MMCDAT1 GPIO28 IO MMCDAT2 GPIO29 IO MMCDAT3 GPIO30 IO MMCCMD_EN GPIO31 IO MMCDAT_EN GPIO32 IO MMCDAT_EN0 GPIO33 IO Page: 12/13

13 Page: 13/13 Ce document WAVECOM est la S.A. propriété - 3 esplanade exclusive du de Foncet WAVECOM Issy-les-Moulineaux Il peut être communiqué Cedex -ou France divulgué - Tel: à +33(0)1 des tiers 46 sans son 00 autorisation - Fax: +33(0)1 préalable Wavecom, Inc Davis Dr. Suite Research Triangle Park, NC USA - Tel: Fax: WAVECOM Asia Pacific Ltd. - Unit , 2 nd Floor - Bio-Informatics Centre - No. 2 Science Park West Avenue - Hong Kong Science Park, Shatin - New Territories, Hong Kong - Tel: Fax:

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GSM UART Port Application Notes GSM_UART_AN_V1.01 Document Title GSM UART Port Application Notes Version 1.01 Date 2009-11-16 Status Document Control ID Release GSM_UART_AN_V1.01 General

More information

TUTORIAL TO USE RELEASE NOTE SUMMARIES STK V3.12

TUTORIAL TO USE RELEASE NOTE SUMMARIES STK V3.12 TUTORIAL TO USE RELEASE NOTE SUMMARIES STK V3.12 Revision: 001 Date: August 2006 a Tutorial to use Release Note Summaries Reference: WM_DEV_OAT_UGD_023-001 Version: 001 Date: confidential Page: 1 / 11

More information

GX64 APPLICATION NOTE GSM 27.010 Multiplexer Feature. Reference: WI_DEV_Gx64_APN_006 Revision: 001 Date: 2007/01/30

GX64 APPLICATION NOTE GSM 27.010 Multiplexer Feature. Reference: WI_DEV_Gx64_APN_006 Revision: 001 Date: 2007/01/30 GX64 APPLICATION NOTE GSM 27.010 Multiplexer Feature Reference: WI_DEV_Gx64_APN_006 Revision: 001 Date: 2007/01/30 Trademarks, WAVECOM, WISMO, Open AT, Wireless CPU, Wireless Microprocessor and certain

More information

WM_. Wireless CPU Q24 Series Differences with the WISMO Quik Q24xx series

WM_. Wireless CPU Q24 Series Differences with the WISMO Quik Q24xx series WM_ Wireless CPU Q24 Series Differences with the WISMO Quik Q24xx series Revision: 002 Date: September 2006 Differences with the WISMO Quik Q24xx series Reference: WM_PRJ_Q24NG_PTS_004 Revision: 002 Date:

More information

Gx64 APPLICATION NOTE Power Management. Reference: WI_DEV_Gx64_APN_007 Version: 001 Date: 2007/01/31

Gx64 APPLICATION NOTE Power Management. Reference: WI_DEV_Gx64_APN_007 Version: 001 Date: 2007/01/31 Reference: WI_DEV_Gx64_APN_007 Version: 001 Date: 2007/01/31 Trademarks, WAVECOM, WISMO, Open AT, Wireless CPU, Wireless Microprocessor and certain other trademarks and logos appearing on this document,

More information

Revision: 002 Date: September 2006. Porting Guide From EdSoft V3.10 to WIPSoft V2.00

Revision: 002 Date: September 2006. Porting Guide From EdSoft V3.10 to WIPSoft V2.00 Revision: 002 Date: September 2006 Porting Guide From EdSoft V3.10 to WIPSoft V2.00 PORTING GUIDE FROM EDSOFT V3.10 TO WIP SOFT V2.00 Reference: WM_DEV_OAT_UGD_027 Revision : 002 Date: 26th September 2006

More information

RS-232 COMMUNICATIONS

RS-232 COMMUNICATIONS Technical Note D64 0815 RS-232 COMMUNICATIONS RS-232 is an Electronics Industries Association (EIA) standard designed to aid in connecting equipment together for serial communications. The standard specifies

More information

Application Note Dual SIM connection

Application Note Dual SIM connection Application Note Dual SIM connection CE The product described in this manual conforms to the TTE directive 91/263/EEC and EMC directive 89/336/EEC. The product fulfils the requirements according to ETS

More information

Event Monitor Application Note 80000NT10028a Rev.3 2012-10-08

Event Monitor Application Note 80000NT10028a Rev.3 2012-10-08 80000NT10028a Rev.3 2012-10-08 APPLICABILITY TABLE GM Family ( Modem) GM862-GPS GC Family ( Compact ) GC864-QUAD GC864-QUAD-V2 GC864-DUAL-V2 GE/GL Family ( Embedded ) GE863-GPS GE863-PRO3 GE864-QUAD GE864-QUAD-V2

More information

LOW COST GSM MODEM. Description. Part Number

LOW COST GSM MODEM. Description. Part Number Dual Band 900 / 1800 MHz Fax, SMS and Data Integral SIM Card holder Siemens TC-35i GSM Engine Rugged Extruded Aluminium Enclosure Compact Form Factor 86 x 54 x 25mm RS232 Interface with Auto baud rate

More information

M95 Dual SIM Application Notes

M95 Dual SIM Application Notes M95 Dual SIM Application Notes GSM/GPRS Module Series Rev. 3.0 Date: 2013-01-29 www.quectel.com Our aim is to provide customers with timely and comprehensive service. For any assistance, please contact

More information

Migration Guide Differences Between GR64 and GR4x Wireless CPU Devices

Migration Guide Differences Between GR64 and GR4x Wireless CPU Devices Differences Between GR64 and GR4x Wireless CPU Devices Reference: WI_DEV_GR64_DVD_001 Version: 001 Date: April 4, 2007 Trademarks, WAVECOM, WISMO, Open AT, Wireless CPU, Wireless Microprocessor and certain

More information

How To Understand The Differences Between The Gr64 And Gs64 (G64)

How To Understand The Differences Between The Gr64 And Gs64 (G64) Differences Between GR64 and GR4x Wireless CPU Devices Reference: WI_DEV_GR64_DVD_001 Version: 002 Date: April 18, 2007 Trademarks, WAVECOM, WISMO, Open AT, Wireless CPU, Wireless Microprocessor and certain

More information

XPort Universal Demo Board User Guide

XPort Universal Demo Board User Guide XPort Universal Demo Board User Guide Part Number 900-563 Revision A September 2009 Copyright and Trademark Contacts 2009 Lantronix. All rights reserved. No part of the contents of this book may be transmitted

More information

MCB3101 (Class I) WiRobot Serial Bluetooth Wireless Module User Manual

MCB3101 (Class I) WiRobot Serial Bluetooth Wireless Module User Manual MCB3101 (Class I) WiRobot Serial Bluetooth Wireless Module User Manual Version: 1.0.1 Dec. 2005 Table of Contents I. Introduction 2 II. Operations 2 II.1. Theory of Operation 2 II.2. Configuration (PC-PC

More information

ELAN DIGITAL SYSTEMS LTD. SL232 PC- CARD USER S GUIDE

ELAN DIGITAL SYSTEMS LTD. SL232 PC- CARD USER S GUIDE ELAN DIGITAL SYSTEMS LTD. LITTLE PARK FARM ROAD, SEGENSWORTH WEST, FAREHAM, HANTS. PO15 5SJ. TEL: (44) (0)1489 579799 FAX: (44) (0)1489 577516 e-mail: support@pccard.co.uk website: http://www.pccard.co.uk

More information

Bluetooth UART/RS232 Module

Bluetooth UART/RS232 Module Introduction BLUEMORE600 is a professional, slim, wireless module ready for integration in brand new or existing electronic products. Based on CSR chipset BC03MM it s fully compatible for Serial Port profiles.

More information

Hardware Reference. Linux Device Server IGW/922 with DIL/NetPC ADNP/9200

Hardware Reference. Linux Device Server IGW/922 with DIL/NetPC ADNP/9200 Linux Device Server IGW/922 with DIL/NetPC ADNP/9200 Hardware Reference SSV Embedded Systems Heisterbergallee 72 D-30453 Hannover Phone: +49 (0)511/40 000-0 Fax: +49 (0)511/40 000-40 E-mail: sales@ist1.de

More information

Cable Guide. Click on the subject to view the information. Digi Cables Building Cables General Cable Information

Cable Guide. Click on the subject to view the information. Digi Cables Building Cables General Cable Information Cable Guide Click on the subject to view the information. Digi Cables Building Cables General Cable Information Digi Cables Click on the subject to view the information. Digi Connector Options Digi Connector

More information

ipac-5010 User Guide + -

ipac-5010 User Guide + - ipac-5010 User Guide Introduction: ipac-5010 is ARM9-based Linux ready industrial Programmable Automation Controller. The key features are as follow: 1. ARM920T ARM Thumb Processor with 200MIPS at 180MHz,

More information

How To Use An Adh8012 Gsm Gprs Module With A Gsm 2.2.2 (Gsm) Gpros (Gsp) Gpls (Geo) Gsp (Gpl) Gs

How To Use An Adh8012 Gsm Gprs Module With A Gsm 2.2.2 (Gsm) Gpros (Gsp) Gpls (Geo) Gsp (Gpl) Gs ADH Technology Co. Ltd. ADH8012 GSM GPRS Modem User s Manual www.adh-tech.com.tw sales@adh-tech.com.tw Page 1 Content ADH8012 GSM GPRS Modem User s Manual... 1 1. Introduction... 3 2. Product concept...

More information

Cable Pinouts. SRP I/O Module

Cable Pinouts. SRP I/O Module Cable Pinouts C This appendix lists the cables and connector pinout assignments for the cables used with the ERX-700 series and ERX-1400 series. Topic Page SRP I/O Module C-1 CT1 and CE1 I/O Modules C-4

More information

6.57b Open AT FW Release Note

6.57b Open AT FW Release Note 6.57b Open AT FW Release Note Reference: WM_DEV_OAT_DVD_259 Revision: 001 Date: February 22, 2007 6.57b Open AT FW Release Note 657b09gg.v13 Reference: WM_DEV_OAT_DVD_ 259 Version: 001 Date: confidential

More information

Application Note 83 Fundamentals of RS 232 Serial Communications

Application Note 83 Fundamentals of RS 232 Serial Communications Application Note 83 Fundamentals of Serial Communications Due to it s relative simplicity and low hardware overhead (as compared to parallel interfacing), serial communications is used extensively within

More information

Modbus Communications for PanelView Terminals

Modbus Communications for PanelView Terminals User Guide Modbus Communications for PanelView Terminals Introduction This document describes how to connect and configure communications for the Modbus versions of the PanelView terminals. This document

More information

M72. Quectel Cellular Engine. EVB User Guide M72_EVB_UGD_V1.0

M72. Quectel Cellular Engine. EVB User Guide M72_EVB_UGD_V1.0 M72 Quectel Cellular Engine EVB User Guide M72_EVB_UGD_V1.0 Document Title EVB User Guide Version 1.0 Date 2011-05-18 Status Document Control ID Release M72_EVB_UGD_V1.0 General Notes Quectel offers this

More information

Future Technology Devices International Ltd

Future Technology Devices International Ltd Future Technology Devices International Ltd Datasheet UMFT200XD Breakout Modules 1 Introduction UMFT200XD is a USB to I 2 C breakout module The UMFT200XD breakout module utilizes FTDI s FT200XQ IC to convert

More information

CP2110-EK CP2110 EVALUATION KIT USER S GUIDE. 1. Kit Contents. 2. Relevant Documentation. 3. Software Setup

CP2110-EK CP2110 EVALUATION KIT USER S GUIDE. 1. Kit Contents. 2. Relevant Documentation. 3. Software Setup CP2110 EVALUATION KIT USER S GUIDE 1. Kit Contents The CP2110 Evaluation Kit contains the following items: CP2110 Evaluation Board RS232 Serial Cable USB Cable DVD Quick Start Guide 2. Relevant Documentation

More information

Data Bulletin. Communications Wiring for POWERLINK G3 Systems Class 1210 ABOUT THIS BULLETIN APPLICATION INTRODUCTION.

Data Bulletin. Communications Wiring for POWERLINK G3 Systems Class 1210 ABOUT THIS BULLETIN APPLICATION INTRODUCTION. Data Bulletin 1210DB0002R3/05 03/2005 LaVergne, TN, USA Communications Wiring for POWERLINK G3 Systems Class 1210 Retain for future use. ABOUT THIS BULLETIN This data bulletin describes the proper wiring

More information

USER GUIDE Programming Adapter Cable for Fujitsu Flash Microcontroller- F²MC-16LX/FR Family Fujitsu Microelectronics America, Inc.

USER GUIDE Programming Adapter Cable for Fujitsu Flash Microcontroller- F²MC-16LX/FR Family Fujitsu Microelectronics America, Inc. USER GUIDE Programming Adapter Cable for Fujitsu Flash Microcontroller- F²MC-16LX/FR Family Fujitsu Microelectronics America, Inc. 1 Revision History Revision # Date Comment 1.0 03.25.2001 New Document

More information

NortechCommander Software Operating Manual MAN-00004 R6

NortechCommander Software Operating Manual MAN-00004 R6 NortechCommander Software Operating Manual MAN-00004 R6 If the equipment described herein bears the symbol, the said equipment complies with the applicable European Union Directive and Standards mentioned

More information

MDM192 MULTI-DROPS DIGITAL MODEM FOR PRIVATE LINE. USER GUIDE Document reference : 9010709-03

MDM192 MULTI-DROPS DIGITAL MODEM FOR PRIVATE LINE. USER GUIDE Document reference : 9010709-03 MDM192 MULTI-DROPS DIGITAL MODEM FOR PRIVATE LINE USER GUIDE Document reference : 9010709-03 If you have questions about the MDM192 or desire assistance, contact ETIC TELECOMMUNICATIONS at the following

More information

Temperature & Humidity SMS Alert Controller

Temperature & Humidity SMS Alert Controller Temperature & Humidity SMS Alert Controller Version 7 [Windows XP/Vista/7] GSMS THR / GSMS THP Revision 110507 [Version 2.2.14A] ~ 1 ~ SMS Alarm Messenger Version 7 [Windows XP/Vista/7] SMS Pro series

More information

Data Cables. Schmitt TTL LABORATORY ELECTRONICS II

Data Cables. Schmitt TTL LABORATORY ELECTRONICS II Data Cables Data cables link one instrument to another. Signals can attenuate or disperse on long wires. A direct wire works best for short cables of less than 10 ft. A TTL cable connection can use a Schmitt

More information

Automatic Telephone Dialer TD-101(W)

Automatic Telephone Dialer TD-101(W) Automatic Telephone Dialer TD-101(W) The TD-101 is an automatic dialing device which can transmit prerecorded information via the telephone line. The dialer can send two different 10 second voice messages

More information

Technical description MX-1 VB Edge

Technical description MX-1 VB Edge 1 (7) Technical description MX-1 VB Edge 2 (7) Table of Contents 1 General description...3 2 Connectors...4 3 ON/OFF operation...5 4 Power...5 5 LED indicators...6 6 Enclosure...6 7 Mounting...6 8 and

More information

Advanced Data Capture and Control Systems

Advanced Data Capture and Control Systems Advanced Data Capture and Control Systems Tronisoft Limited Email: sales@tronisoft.com Web: www.tronisoft.com RS232 To 3.3V TTL User Guide RS232 to 3.3V TTL Signal Converter Modules P/N: 9651 Document

More information

Future Technology Devices International Ltd

Future Technology Devices International Ltd Future Technology Devices International Ltd Datasheet Chipi-X Cable Chipi-X is a USB to full-handshake RS232 cable with a male DB9 connector. This cable is available with or without an enclosure. 1 Introduction

More information

AND8336. Design Examples of On Board Dual Supply Voltage Logic Translators. Prepared by: Jim Lepkowski ON Semiconductor. http://onsemi.

AND8336. Design Examples of On Board Dual Supply Voltage Logic Translators. Prepared by: Jim Lepkowski ON Semiconductor. http://onsemi. Design Examples of On Board Dual Supply Voltage Logic Translators Prepared by: Jim Lepkowski ON Semiconductor Introduction Logic translators can be used to connect ICs together that are located on the

More information

GTS-4E Hardware User Manual. Version: V1.1.0 Date: 2013-12-04

GTS-4E Hardware User Manual. Version: V1.1.0 Date: 2013-12-04 GTS-4E Hardware User Manual Version: V1.1.0 Date: 2013-12-04 Confidential Material This document contains information highly confidential to Fibocom Wireless Inc. (Fibocom). Fibocom offers this information

More information

ICL232. +5V Powered, Dual RS-232 Transmitter/Receiver. Description. Features. Ordering Information. Applications. Functional Diagram.

ICL232. +5V Powered, Dual RS-232 Transmitter/Receiver. Description. Features. Ordering Information. Applications. Functional Diagram. ICL August V Powered, Dual RS Transmitter/Receiver Features Meets All RSC and V. Specifications Requires Only Single V Power Supply Onboard Voltage Doubler/Inverter Low Power Consumption Drivers ±V Output

More information

What is Easy-Radio? Devices Covered. Frequency Hopping Transceiver. Where x00 denotes frequency of operation. E.g. 400 = 433MHz

What is Easy-Radio? Devices Covered. Frequency Hopping Transceiver. Where x00 denotes frequency of operation. E.g. 400 = 433MHz What is Easy-Radio? Easy-Radio modules combine low power radio transmitters, receivers or transceivers with on-board microcontrollers to produce intelligent RF modules that provide simple to use wireless

More information

DS1621 Digital Thermometer and Thermostat

DS1621 Digital Thermometer and Thermostat Digital Thermometer and Thermostat www.dalsemi.com FEATURES Temperature measurements require no external components Measures temperatures from 55 C to +125 C in 0.5 C increments. Fahrenheit equivalent

More information

Single channel data transceiver module WIZ2-434

Single channel data transceiver module WIZ2-434 Single channel data transceiver module WIZ2-434 Available models: WIZ2-434-RS: data input by RS232 (±12V) logic, 9-15V supply WIZ2-434-RSB: same as above, but in a plastic shell. The WIZ2-434-x modules

More information

GMB HR84 GMM F346 TECHNICL MANUAL. grifo ITALIAN TECHNOLOGY. grifo Mini BLOCK Housing, 8 Opto Input, 4 Relay Outputs

GMB HR84 GMM F346 TECHNICL MANUAL. grifo ITALIAN TECHNOLOGY. grifo Mini BLOCK Housing, 8 Opto Input, 4 Relay Outputs grifo Mini BLOCK Housing, 8 Opto Input, 4 Relay Outputs grifo Mini Module Silicon Lab. C8051 TECHNICL MANUAL Via dell' Artigiano, 8/6 40016 San Giorgio di Piano (Bologna) ITALY E-mail: grifo@grifo.it http://www.grifo.it

More information

Date Rev. Details Author

Date Rev. Details Author Jtech engineering ltd J - Te c h E n g i n e e ring, L t d. 11080 Bond Boulevard Delta BC V4E 1M7 Canada Tel: 604 543 6272 Fax: 604 543 6476 http://www.jtecheng.com AUTODIALER USER S MANUAL REVISION HISTORY

More information

Quick Installation. A Series of Intelligent Bar Code Reader with NeuroFuzzy Decoding. Quick Installation

Quick Installation. A Series of Intelligent Bar Code Reader with NeuroFuzzy Decoding. Quick Installation Quick Installation A Series of Intelligent Bar Code Reader with NeuroFuzzy Decoding This chapter intends to get your new FuzzyScan scanner working with your existing system within minutes. General instructions

More information

MSITel provides real time telemetry up to 4.8 kbps (2xIridium modem) for balloons/experiments

MSITel provides real time telemetry up to 4.8 kbps (2xIridium modem) for balloons/experiments The MSITel module family allows your ground console to be everywhere while balloon experiments run everywhere MSITel provides real time telemetry up to 4.8 kbps (2xIridium modem) for balloons/experiments

More information

1.1 Connection. 1.1.1 Direct COM port connection. 1. Half duplex RS232 spy cable without handshaking

1.1 Connection. 1.1.1 Direct COM port connection. 1. Half duplex RS232 spy cable without handshaking POS function Marchen POS-DVR surveillance system is a professional surveillance integrated with POS system. By bringing video and POS transaction data together, the POS-DVR surveillance system provides

More information

Inwall Room Temperature Unit

Inwall Room Temperature Unit Inwall Room Temperature Unit TM11B01KNX TM11B11KNX TM11B21KNX Product Handbook Product: Inwall Room Temperature Unit Order Code: TM11B01KNX TM11B11KNX TM11B21KNX Application Program ETS: TM11B_1KNX Inwall

More information

L16. Quectel GNSS Engine. EVB User Guide L16_EVB_UGD_V1.0

L16. Quectel GNSS Engine. EVB User Guide L16_EVB_UGD_V1.0 L16 GNSS Engine EVB User Guide L16_EVB_UGD_V1.0 Document Title L16 EVB User Guide Version 1.0 Date 2012-07-18 Status Document Control ID Released L16_EVB_UGD_V1.0 General Notes offers this information

More information

GSM. Quectel Cellular Engine. GSM TCPIP Application Notes GSM_TCPIP_AN_V1.1

GSM. Quectel Cellular Engine. GSM TCPIP Application Notes GSM_TCPIP_AN_V1.1 GSM Cellular Engine GSM TCPIP Application Notes GSM_TCPIP_AN_V1.1 Document Title GSM TCPIP Application Notes Version 1.1 Date 2011-09-22 Status Document Control ID Release GSM_TCPIP_AN_V1.1 General Notes

More information

SyncLink GT2/GT4 Serial Adapter

SyncLink GT2/GT4 Serial Adapter SyncLink GT2/GT4 Serial Adapter Hardware User s Manual MicroGate Systems, Ltd http://www.microgate.com MicroGate and SyncLink are registered trademarks of MicroGate Systems, Ltd. Copyright 2008 2012 MicroGate

More information

Remote Data Collection Device CE Model DCDSS1

Remote Data Collection Device CE Model DCDSS1 Remote Data Collection Device CE Model DCDSS1 Documentation Number DCDSS11702 This product designed and manufactured in Ottawa, Illinois USA of domestic and imported parts by International Headquarters

More information

USB / Data-Acquisition Module NOW LEAD-FREE

USB / Data-Acquisition Module NOW LEAD-FREE USB / Data-Acquisition Module NOW LEAD-FREE DLP-TEMP-G Features: Digital I/Os, Analog Inputs (0- Volts) or any combination USB. and.0 Compatible Interface th Generation Silicon from FTDI Supports Up To

More information

L10. Quectel GPS Engine. EVB User Guide L10_EVB_UGD_V1.00

L10. Quectel GPS Engine. EVB User Guide L10_EVB_UGD_V1.00 L10 GPS Engine EVB User Guide L10_EVB_UGD_V1.00 Document Title L10 EVB User Guide Version 1.00 Date 2009-7-20 Status Document Control ID Release L10_EVB_UGD_V1.00 General Notes offers this information

More information

2-Port RS232/422/485 Combo Serial to USB2.0 Adapter (w/ Metal Case and Screw Lock Mechanism) Installation Guide

2-Port RS232/422/485 Combo Serial to USB2.0 Adapter (w/ Metal Case and Screw Lock Mechanism) Installation Guide 2-Port RS232/422/485 Combo Serial to USB2.0 Adapter (w/ Metal Case and Screw Lock Mechanism) Installation Guide 1. Introduction Thank you for purchasing this 2-Port RS232/422/485 Combo Serial to USB Adapter.

More information

Elettronica dei Sistemi Digitali Costantino Giaconia SERIAL I/O COMMON PROTOCOLS

Elettronica dei Sistemi Digitali Costantino Giaconia SERIAL I/O COMMON PROTOCOLS SERIAL I/O COMMON PROTOCOLS RS-232 Fundamentals What is RS-232 RS-232 is a popular communications interface for connecting modems and data acquisition devices (i.e. GPS receivers, electronic balances,

More information

Using HyperTerminal with Agilent General Purpose Instruments

Using HyperTerminal with Agilent General Purpose Instruments Using HyperTerminal with Agilent General Purpose Instruments Windows HyperTerminal can be used to program most General Purpose Instruments (not the 531xx series counters) using the RS-232 Serial Bus. Instrument

More information

GIVE WINGS TO YOUR IDEAS TUTORIAL

GIVE WINGS TO YOUR IDEAS TUTORIAL GIVE WINGS TO YOUR IDEAS TUTORIAL PLUG IN TO THE WIRELESS WORLD Tutorial Version: 001 / 1.0 Date: October 30, 2001 Reference: WM_SW_OAT_UGD_001 confidential Page: 1 / 18 (THIS PAGE IS INTENTIONALY LEFT

More information

DK40 Datasheet & Hardware manual Version 2

DK40 Datasheet & Hardware manual Version 2 DK40 Datasheet & Hardware manual Version 2 IPC@CHIP DK40 Evaluation module Beck IPC GmbH http://www.bcl.de page 1 of 11 Table of contents Table of contents... 2 Basic description... 3 Characteristics...

More information

A RF18 Remote control receiver MODULE

A RF18 Remote control receiver MODULE A RF18 Remote control receiver MODULE User Guide No part of this document may be reproduced or transmitted (in electronic or paper version, photocopy) without Adeunis RF consent. This document is subject

More information

GIVE WINGS TO YOUR IDEAS TOOLS MANUAL

GIVE WINGS TO YOUR IDEAS TOOLS MANUAL GIVE WINGS TO YOUR IDEAS TOOLS MANUAL PLUG IN TO THE WIRELESS WORLD Version: 001 / 1.0 Date: October 30, 2001 Reference: WM_TOO_OAT_UGD_001 confidential Page: 1 / 22 (THIS PAGE IS INTENTIONALY LEFT BLANK)

More information

DS1621 Digital Thermometer and Thermostat

DS1621 Digital Thermometer and Thermostat www.maxim-ic.com FEATURES Temperature measurements require no external components Measures temperatures from -55 C to +125 C in 0.5 C increments. Fahrenheit equivalent is -67 F to 257 F in 0.9 F increments

More information

DKWF121 WF121-A 802.11 B/G/N MODULE EVALUATION BOARD

DKWF121 WF121-A 802.11 B/G/N MODULE EVALUATION BOARD DKWF121 WF121-A 802.11 B/G/N MODULE EVALUATION BOARD PRELIMINARY DATA SHEET Wednesday, 16 May 2012 Version 0.5 Copyright 2000-2012 Bluegiga Technologies All rights reserved. Bluegiga Technologies assumes

More information

USB-to-Serial RS-232 Hub USB-to-Serial RS-422/485 Hub USER MANUAL UC2322 / UC2324 / UC4852 / UC4854

USB-to-Serial RS-232 Hub USB-to-Serial RS-422/485 Hub USER MANUAL UC2322 / UC2324 / UC4852 / UC4854 USB-to-Serial RS-232 Hub USB-to-Serial RS-422/485 Hub USER MANUAL UC2322 / UC2324 / UC4852 / UC4854 FCC Information This equipment has been tested and found to comply with the limits for a Class B digital

More information

USB TO SERIAL ADAPTER

USB TO SERIAL ADAPTER USB TO SERIAL ADAPTER (Model: U232-P9V2) SPECIFICATIONS CONTENTS 1. GENERAL SPECIFICATIONS... 1 1.1 PRODUCT SURFACE... 1 1.2 PRODUCT DIMENSION... 2 1.3 PRODUCT FEATURES... 3 1.4 PRODUCT SPECIFICATIONS...

More information

IPG/7700 Hardware Manual SYSTECH. Document number 80-001099-7 Revision A

IPG/7700 Hardware Manual SYSTECH. Document number 80-001099-7 Revision A IPG/7700 Hardware Manual SYSTECH C O R P O R A T I O N Document number 80-001099-7 Revision A Created 2010, and Protected Under the U.S. Copyright Act of 1976. Copyright 2010, SYSTECH Corporation All Rights

More information

Thermostat Application Module Kit

Thermostat Application Module Kit Thermostat Application Module Kit PUG0040-00 Product User Guide Kit Contents Overview Thermostat Application Module CD-ROM: Software Examples and Documentation The Thermostat Application Module provides

More information

Hello, and welcome to this presentation of the STM32 SDMMC controller module. It covers the main features of the controller which is used to connect

Hello, and welcome to this presentation of the STM32 SDMMC controller module. It covers the main features of the controller which is used to connect Hello, and welcome to this presentation of the STM32 SDMMC controller module. It covers the main features of the controller which is used to connect the CPU to an SD card, MMC card, or an SDIO device.

More information

EMBEDDED LINUX. Reference to: Ettore Di Giacinto Luca Montunato http://www.pilug.org

EMBEDDED LINUX. Reference to: Ettore Di Giacinto Luca Montunato http://www.pilug.org EMBEDDED LINUX Reference to: Ettore Di Giacinto Luca Montunato http://www.pilug.org Parte 1 INTRODUZIONE Embedded Linux: Distribuzioni UNIX-based; Kernel Modulare Prestazioni elevate della macchina; Moduli

More information

VF2F. USB Flash Disk File-to-file Transfer Vinculum Evaluation Kit. Future Technology Devices International Ltd. Preliminary - Subject to Change

VF2F. USB Flash Disk File-to-file Transfer Vinculum Evaluation Kit. Future Technology Devices International Ltd. Preliminary - Subject to Change Future Technology Devices International Ltd. VF2F USB Flash Disk File-to-file Transfer Vinculum Evaluation Kit http://www.vinculum.com Copyright Future Technology Devices International Ltd. 2006 1. Introduction

More information

Hello, and welcome to this presentation of the STM32L4 reset and clock controller.

Hello, and welcome to this presentation of the STM32L4 reset and clock controller. Hello, and welcome to this presentation of the STM32L4 reset and clock controller. 1 The STM32L4 reset and clock controller manages system and peripheral clocks. STM32L4 devices embed three internal oscillators,

More information

PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999

PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999 232 232232 PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999 Guarantee. FULL 36 MONTHS GUARANTEE. We guarantee your interface card for a full 36 months from purchase, parts and labour, provided it has been

More information

SPI I2C LIN Ethernet. u Today: Wired embedded networks. u Next lecture: CAN bus u Then: 802.15.4 wireless embedded network

SPI I2C LIN Ethernet. u Today: Wired embedded networks. u Next lecture: CAN bus u Then: 802.15.4 wireless embedded network u Today: Wired embedded networks Ø Characteristics and requirements Ø Some embedded LANs SPI I2C LIN Ethernet u Next lecture: CAN bus u Then: 802.15.4 wireless embedded network Network from a High End

More information

Copyrights 2010 Victron Energy B.V. All Rights Reserved

Copyrights 2010 Victron Energy B.V. All Rights Reserved Manual EN 1 Copyrights 2010 Victron Energy B.V. All Rights Reserved This publication or parts thereof may not be reproduced in any form, by any method, for any purpose. For conditions of use and permission

More information

Low-Voltage, Single-Supply 232-Standard Interface Solutions

Low-Voltage, Single-Supply 232-Standard Interface Solutions Application Report SLLA0A - SEPTEMBER 000 Low-Voltage, Single-Supply -Standard Interface Solutions Jose M. Soltero, Jing Zhang, and Ernest Cox Linear Products ABSTRACT Features and key specifications for

More information

Block 3 Size 0 KB 0 KB 16KB 32KB. Start Address N/A N/A F4000H F0000H. Start Address FA000H F8000H F8000H F8000H. Block 2 Size 8KB 16KB 16KB 16KB

Block 3 Size 0 KB 0 KB 16KB 32KB. Start Address N/A N/A F4000H F0000H. Start Address FA000H F8000H F8000H F8000H. Block 2 Size 8KB 16KB 16KB 16KB APPLICATION NOTE M16C/26 1.0 Abstract The following article describes using a synchronous serial port and the FoUSB (Flash-over-USB ) Programmer application to program the user flash memory of the M16C/26

More information

LTM-1338B. Plus Communications Manual

LTM-1338B. Plus Communications Manual LTM-1338B Plus Communications Manual 2000. Best Power, Necedah, Wisconsin All rights reserved. Best Power The System Setup option from the Main Menu on the front panel is passwordprotected. The default

More information

Auxiliary equipment for communication with the EuroProt protective devices

Auxiliary equipment for communication with the EuroProt protective devices Auxiliary equipment for communication with the EuroProt protective devices RS232 cable This cable is used to connect the RS232 connector located on the front panel of the EuroProt devices to the 9 pin

More information

HARDWARE MANUAL. BrightSign HD120, HD220, HD1020. BrightSign, LLC. 16795 Lark Ave., Suite 200 Los Gatos, CA 95032 408-852-9263 www.brightsign.

HARDWARE MANUAL. BrightSign HD120, HD220, HD1020. BrightSign, LLC. 16795 Lark Ave., Suite 200 Los Gatos, CA 95032 408-852-9263 www.brightsign. HARDWARE MANUAL BrightSign HD120, HD220, HD1020 BrightSign, LLC. 16795 Lark Ave., Suite 200 Los Gatos, CA 95032 408-852-9263 www.brightsign.biz TABLE OF CONTENTS OVERVIEW... 1 Block Diagram... 2 Ports...

More information

Dial-Up / Leased-Line Modem. User Manual. AGM Electronics, Inc Dial-Up / Leased-Line Modem, Series ( ) 5019-1 Manual Rev A + - DLM CTS RTS DTR DSR

Dial-Up / Leased-Line Modem. User Manual. AGM Electronics, Inc Dial-Up / Leased-Line Modem, Series ( ) 5019-1 Manual Rev A + - DLM CTS RTS DTR DSR AGM Electronics, Inc Dial-Up / Leased-Line Modem, Series ( ) 5019-1 Manual Rev A User Manual + - CD CTS RTS DTR. DSR RI RX TX PHONE LINE DLM Dial-Up / Leased-Line Modem Dial-Up / Leased-Line Modem CONTENTS

More information

Why you need to monitor serial communication?

Why you need to monitor serial communication? Why you need to monitor serial communication Background RS232/RS422 provides 2 data lines for each data channel. One is for transmitting data and the other for receiving. Because of these two separate

More information

LEN s.r.l. Via S. Andrea di Rovereto 33 c.s. 16043 CHIAVARI (GE) Tel. +39 0185 318444 - Fax +39 0185 472835 mailto: len@len.it url: http//www.len.

LEN s.r.l. Via S. Andrea di Rovereto 33 c.s. 16043 CHIAVARI (GE) Tel. +39 0185 318444 - Fax +39 0185 472835 mailto: len@len.it url: http//www.len. MA511 General Index 1 INTRODUCTION... 3 1.1 HARDWARE FEATURES:... 4 2 INTERFACE... 5 2.1 KEYBOARD... 6 2.2 POWER ON... 7 2.3 POWER OFF... 7 2.4 DETECTOR CONNECTION... 7 2.5 DETECTOR SUBSTITUTION...7 3

More information

M80 EVB User Guide M80. Quectel Cellular Engine. EVB User Guide M80_EVB_UGD_V1.2 M80_EVB_UGD_V1.2-0-

M80 EVB User Guide M80. Quectel Cellular Engine. EVB User Guide M80_EVB_UGD_V1.2 M80_EVB_UGD_V1.2-0- M80 Cellular Engine EVB User Guide M80_EVB_UGD_V1.2 M80_EVB_UGD_V1.2-0- Document Title M80 EVB User Guide Version 1.2 Date 2012-08-13 Status Document Control ID Released M80_EVB_UGD_V1.2 General Notes

More information

ETRX3USB ETRX3USB-LRS ETRX3USB+8M ETRX3USB-LRS+8M PRODUCT MANUAL

ETRX3USB ETRX3USB-LRS ETRX3USB+8M ETRX3USB-LRS+8M PRODUCT MANUAL Telegesis TG-ETRX357USB-PM-014-102 ETRX3USB Product Manual 1.02 ZigBee USB STICKS: ETRX3USB ETRX3USB-LRS ETRX3USB+8M ETRX3USB-LRS+8M PRODUCT MANUAL 2013 Telegesis (UK) Ltd ETRX3USB Product Manual (Rev

More information

Using Xbee 802.15.4 in Serial Communication

Using Xbee 802.15.4 in Serial Communication Using Xbee 802.15.4 in Serial Communication Jason Grimes April 2, 2010 Abstract Instances where wireless serial communication is required to connect devices, Xbee RF modules are effective in linking Universal

More information

Wireless Temperature

Wireless Temperature Wireless Temperature connected freedom and Humidity Sensor Using TELRAN Application note TZ1053AN-06 Oct 2011 Abstract Dr. C. Uche This application note describes the complete system design (hardware and

More information

MFRD52x. Mifare Contactless Smart Card Reader Reference Design. Document information

MFRD52x. Mifare Contactless Smart Card Reader Reference Design. Document information Rev. 2.1 17. April 2007 Preliminary Data Sheet Document information Info Keywords Content MFRC522, MFRC523, MFRC52x, MFRD522, MFRD523, Mifare Contactless Smart Card Reader Reference Design, Mifare Reader

More information

Pre-tested System-on-Chip Design. Accelerates PLD Development

Pre-tested System-on-Chip Design. Accelerates PLD Development Pre-tested System-on-Chip Design Accelerates PLD Development March 2010 Lattice Semiconductor 5555 Northeast Moore Ct. Hillsboro, Oregon 97124 USA Telephone: (503) 268-8000 www.latticesemi.com 1 Pre-tested

More information

USER GUIDE EDBG. Description

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

More information

PC Base Adapter Daughter Card UART GPIO. Figure 1. ToolStick Development Platform Block Diagram

PC Base Adapter Daughter Card UART GPIO. Figure 1. ToolStick Development Platform Block Diagram TOOLSTICK VIRTUAL TOOLS USER S GUIDE RELEVANT DEVICES 1. Introduction The ToolStick development platform consists of a ToolStick Base Adapter and a ToolStick Daughter card. The ToolStick Virtual Tools

More information

Express11-G3 Backplane. User Guide. Version: 1.02

Express11-G3 Backplane. User Guide. Version: 1.02 Express11-G3 Backplane User Guide Version: 1.02 Unpacking Your packing box should contain the following items: The Express11-G3 Backplane SLink-G3 Card (optional) HLink-G3 Card (optional) ExCable-G3 (optional)

More information

M85 OpenCPU Solution Presentation

M85 OpenCPU Solution Presentation M85 OpenCPU Solution Presentation 2013/09/22 Wireless Solutions Co., Ltd. All rights reserved OUTLINE OpenCPU Summary Advantages Software Architecture What s New? Open Resources Development Requirements

More information

USB to serial chip CH340

USB to serial chip CH340 The DataSheet of CH340 (the first) 1 1. Introduction USB to serial chip CH340 English DataSheet Version: 1D http://wch.cn CH340 is a USB bus convert chip and it can realize USB convert to serial interface,

More information

M2M 3350 GSM/GPRS Modem User s Manual & Reference Guide Revision 1 June 2007

M2M 3350 GSM/GPRS Modem User s Manual & Reference Guide Revision 1 June 2007 M2M 3350 GSM/GPRS Modem User s Manual & Reference Guide Revision 1 June 2007 1999-2007 by Laipac Technology, Inc. All rights reserved The Specifications and information regarding the products in this manual

More information

Desktop Thermal Printer User s Manual

Desktop Thermal Printer User s Manual Desktop Thermal Printer User s Manual 2722 2742 3742 User s Manual No. 980344-001 Rev. A 2001 Zebra Technologies Corporation COPYRIGHT NOTICE This document contains information proprietary to Zebra Technologies

More information

ETM9350-1/9400-1 Quick Start Guide

ETM9350-1/9400-1 Quick Start Guide GSM/GPRS Terminal ETM9350-1 HSDPA/UMTS/GSM/GPRS Terminal ETM9400-1 Cinterion EU3-P Inside ETM9400-1 TC63i Inside ETM9350-1 ETM9350-1/9400-1 Quick Start Guide Features: 3G (HSDPA/UMTS) Connectivity ETM9400-1

More information

R10 22k. R9 10k PICAXE-08M RXD. Sample Program: main: high 4 pause 1000 low 4 pause 1000 goto main R7 330 D7 LED-RED.

R10 22k. R9 10k PICAXE-08M RXD. Sample Program: main: high 4 pause 1000 low 4 pause 1000 goto main R7 330 D7 LED-RED. PICAXE VSM Tutorial Part PICAXE VSM Tutorial Part In the third part of our PICAXE VSM tutorial we look at how to use some of the virtual instrumentation included with the software from simple voltmeter

More information

GeoDAS. Links to GeoSIG Instruments. User Manual Extension

GeoDAS. Links to GeoSIG Instruments. User Manual Extension GeoDAS Manual GeoSIG Ltd Page i GeoDAS Links to GeoSIG Instruments User Manual Extension Company: Author: Checked: Approved: Distribution: GeoSIG Ltd Ahornweg 5A, 5504 Othmarsingen, Switzerland, Tel: +41

More information