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

Size: px
Start display at page:

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

Transcription

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

2 Trademarks, WAVECOM, WISMO, Open AT, Wireless CPU, Wireless Microprocessor and certain other trademarks and logos appearing on this document, are filed or registered trademarks of Wavecom S.A. in France or in other countries. All other company and/or product names mentioned may be filed or registered trademarks of their respective owners. Copyright This manual is copyrighted by WAVECOM with all rights reserved. No part of this manual may be reproduced in any form without the prior written permission of WAVECOM. No patent liability is assumed with respect to the use of the information contained herein. No Warranty WAVECOM 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. Page: 2/24

3 Table of Contents 1 Overview Glossary Introduction BENEFITS OF MUX INTENDED AUDIENCE Use Case Examples GR/GS MUX Implementation BASIC OPTION CONVERGENCE LAYER TYPE NUMBER OF CHANNELS PARAMETER NEGOTIATION MODEM STATUS COMMAND BAUD RATE FLOW CONTROL LOW POWER MODE T3 TIMER Application Design Considerations LOCAL AND GLOBAL SETTINGS AT COMMANDS NOT APPLICABLE IN MUX MODE AIR INTERFACE LIMITATION APPLICATION DATA RECOVERY Page: 3/24

4 6.5 FLOW CONTROL AND BUFFER MANAGEMENT OVERHEAD AND TIMING CONSIDERATIONS OPTIMAL CHANNEL USAGE Host Side MUX Driver Designs References Appendix A Basic MUX Procedures Page: 4/24

5 1 Overview This document provides an overview of GSM Multiplexer feature defined by 3GPP specification, details of multiplexer features supported by Wavecom GR/GS64 Wireless CPU, and application design considerations. This document is intended as a reference for integrators, as an aid to understanding and implementing multiplexer feature. These notes are written to be informative and helpful, but they are by no means definitive or exhaustive in their content or suggestions. 2 Glossary GSM 3GPP Multiplexing protocol CS DCE DLC DTE FCS Circuit Switched Data Circuit terminating Equipment Data Link Connection virtual serial channel Data Terminal Equipment Frame Check Sequence HDLC High-level Data Link Control (ISO/IEC 13239:1997) Host Application MSC MS MO MT MUX SABM Serial Mode TE UIH A TE side customer application Modem Status Command Mobile Station (i.e. GR/GS64 Wireless CPU) Mobile Originated Mobile Terminated Multiplexer Set Asynchronous Balanced Mode The Non-MUX mode GR/GS64 starts up into Terminal Equipment Unnumbered Information with header Check Page: 5/24

6 3 Introduction The multiplexer protocol operates between an MS (e.g. GR/GS64) and a TE (i.e. a host application) and allows a number of simultaneous virtual channels over a serial asynchronous interface (e.g., a RS232 link). GPRS data, SMS data, AT commands, unsolicited responses, etc. can be sent on different channels. When virtual channels are established, they begin in AT command mode and each channel acts like a virtual serial link from a host application point of view. For technical details of features please refer to [1]. GSM specs can be found at URL: TE MS TE Processes Convergence Layers Multiplexer Layer Physical Layer - serial link MS Processes Convergence Layers Multiplexer Layer Physical Layer - serial link Figure 1: protocol stack Figure 1 shows the arrangement of the protocol stack. The multiplexer layer provides multiplexing of data; if the structure of the data has to be conveyed, a convergence layer may be necessary. The 3GPP specification is intended to define a protocol that can be used to emulate a serial port. Each virtual channel does best-effort emulation of a serial link. Each channel may have individual flow control procedures for buffer management purposes and Modem Status Command(MSC)s are used to emulate serial link control signals (such as RTS, CTS, DTR, DSR, DCD). AT+CMUX command enables the MUX control channel and it is the first step in starting the MUX. The basic MUX set up procedures are described in Appendix 1. A MUX driver is needed on the host application side to enable the host application to communicate with GR/GS64 using MUX protocol. Page: 6/24

7 3.1 Benefits of MUX The existence of simultaneous virtual channels in MUX mode creates advantages over serial mode where only one link is available. Some benefits are as follows: 1. A host application can parse AT command results and unsolicited responses on different channels. 2. A GPRS or a CSD data session can run in one channel uninterrupted while unsolicited responses and AT command controls can be handled in other channels. 3. In host applications that have 3 wire interfaces, MSCs provide virtual signals such as DTR, DCD, RI, etc. These benefits are demonstrated in the use case examples in section Intended Audience This application note is intended for integrators who have experience writing serial communication programs and intend to develop and integrate a host side MUX driver according to the GSM specification and GR/GS64 AT command manual. Before reading this document, readers should have a basic understanding of the standard itself and a basic working knowledge of GR/GS64 AT commands. Page: 7/24

8 4 Use Case Examples In this section, we will examine several use case scenarios where MUX channels are advantageous. Comparisons between serial mode and MUX mode are also provided. In following scenarios, a GPRS data connection could be an on-board TCP/IP socket connection or a dial up GPRS connection. Scenario 1: Mobile terminated SMS while in online data mode Serial mode: After a host application establishes a GPRS data connection, the serial link enters online data mode. Subsequent SMS unsolicited responses are buffered or discarded depending on the +CNMI setting. When the host application is expecting an MT SMS, it can only do it in two ways: Periodically switch to online command mode and check the SMS messages. Monitor the RI pin to detect incoming SMS if AT*E2SMSRI is enabled. The first method may not work if the host application has to process SMS messages in a timely fashion. The second method may not work due to the possible hardware constraints of the host application. MUX mode: The host application uses two virtual channels, one for GPRS data connection (using AT+CGDCONT, AT+CGACT, AT*E2IPO, etc.) and one for AT commands. Enable the SMS unsolicited responses (using AT+CNMI) in the AT command channel and host application can receive SMS notification right away. Scenario 2: Unsolicited responses while in online data mode Serial mode: A host application can not receive unsolicited responses in on-line data mode. If the host application relies on certain status to determine the execution of the program, it has to switch between online data mode and online command mode at certain intervals and then query for the status. This might not work reliably in some cases. For example, if the host application relies on the +CGREG unsolicited response to make sure data is always not sent while roaming. MUX mode: The host application uses two virtual channels, one for data connection and one for unsolicited responses. Upon the receipt of +CGREG roaming unsolicited response, application can stop the data flow immediately. Page: 8/24

9 Scenario 3: AT commands and unsolicited responses in different channels Serial mode: A host application has to parse both AT commands and unsolicited messages, which can be complex. MUX mode: The host application uses two virtual channels, first one for AT commands and second one for Unsolicited Responses. On the first channel, the host application only parses AT commands responses and on the second channel, it only parses unsolicited responses. Scenario 4: AT command control while in online data mode Serial mode: Again a host application has to switch between online data mode and online command mode in order to use AT commands, such as AT+CSQ. The host application has to explicitly suspend GPRS session in order to switch between modes. MUX mode: The host application uses two virtual channels, one for data connection and one for AT commands. The host application can send data without being interrupted on the data channel while it sends AT+CSQ and other commands are on another channel. Page: 9/24

10 5 GR/GS MUX Implementation GR/GS implementation conforms to the Release 99 GSM specification 3GPP version GPP defines three operating options: basic, advanced without error recovery and advanced with error recovery. The GR/GS64 supports basic option. 3GPP defines four convergence layer types and GR/GS64 only supports convergence layer type 1. All other MUX services that are defined in the spec but not mentioned in this section are not supported by GR/GS Basic Option The GR/GS64 supports basic option and thus it only supports non-error-recovery mode and uses UIH frame to carry user data. In addition, basic option also means the following: - Length indicator used instead of the HDLC transparency mechanism. - Different flag octet (0xF9) from that used by HDLC. - Can not be used on links that use XON/XOFF flow control. - May have longer recovery procedure from loss of synchronization. Basic option is intended for serial links with good quality. 5.2 Convergence Layer Type 1 GR/GS64 only supports convergence layer type 1. Convergence layer type 1 is used to transfer over channels where there is no need to convey the control signals (such as embedded V.24 signals) along with the information. The V.24 information instead will be carried by the MSCs on the MUX control channel. Only UIH frames are used for data frames. 5.3 Number of Channels A Data Link Connection (DLC) is used to identify a virtual channel. A MUX control channel (DLC 0) is used to exchange management information, such as parameter negotiation, testing, flow control, close down, etc. In the context of this document, channel and DLC will be used interchangeably. GR/GS64 supports up to 8 channels in addition to a MUX control channel. MUX control channel has high priority and all other channels have same priorities. Page: 10/24

11 5.4 Parameter Negotiation Individual channel parameters such as priority, acknowledgement timer, maximum frame size, and maximum number of retransmissions are optional for negotiation according to standard. GR/GS64 only supports maximum frame size negotiation. The upper limit of the negotiable maximum frame size is 127 bytes. AT+CMUX command uses the parameter N1 to set the default value of the Maximum Frame Size. The actual maximum frame size can be then negotiated when DLCs are established via Parameter Negotiation Command. 5.5 Modem Status Command Physical RS232 control signals DTR, DCD and RI are disabled when MUX is activated. Instead virtual signals (MSCs) are used to simulate those signals for individual DLCs. In MUX mode AT commands such as AT+IFC, AT&D, AT&S, and AT&C control the behaviours of individual DLCs virtual signals rather than the physical UART control signals. DLCIs (Data Link Connection Identifiers) and virtual modem signals RTS, CTS, DTR, DSR, DCD and RI modem signals are specified in the MSC frames and MSCs are sent on the MUX control channel. Virtual modem signals are mapped to the following bits in a MSC command frame. Control Signal Bit, Name Output Signal Input Signal 3, RTC DSR DTR 4, RTR CTS RTS 7, IC RI -ignored 8, DV DCD -ignored Break Signal is not supported in the MSC. Page: 11/24

12 5.6 Baud Rate GR/GS64 supports baud rates ranging from 9600 to They correspond to the third parameter of the AT+CMUX command. If autobaud is active (i.e. AT+IPR=0) when the MUX is started, it is automatically turned off and the MUX continues to operate at the baud rate in which the +CMUX command is entered. For example, if auto baud is active, a host application can switch baud to and send AT+CMUX=0,0,5<CR> and SABM on channel 0 at that baud rate. Once the MUX is closed the module will be placed back into autobaud. On the other hand, if autobaud is OFF (e.g. AT+IPR=115200), the host application has to send AT+CMUX=0,0,5<CR> and send SABM at the baud rate of Sending them at any other baud rate will fail. 5.7 Flow Control Two kinds of flow controls are supported by GR/GS64 MUX. Individual channel flow control enabled by MSC Aggregate flow control enabled by the Hardware signals RTS and CTS. Individual channel flow control is achieved via MSC on the MUX control channel. Aggregate flow control is achieved by hardware and the hardware handshake signals are used instead of FCon and FCoff (defined in spec) to provide fast response. Please see section Flow control and Buffer Management for more information. 5.8 Low Power Mode Autonomous standby mode stays effective in MUX mode if it was enabled (by AT*E2RS232 command) in serial mode before activation of the MUX mode. Standbyhandshaking on the other hand does not work with MUX because it involves direct control of RS232 signal lines. 5.9 T3 Timer After GR/GS64 has received AT+CMUX command, if it does not receive SABM on channel 0 before the timer T3 expires, it will revert to normal AT mode. Since the MUX activation usually takes more than 4 seconds for GR/GS64, T3 parameter of the AT+CMUX command should be greater than 10 seconds. Page: 12/24

13 6 Application Design Considerations When designing a host application that uses MUX, following have to be taken into considerations up front. 6.1 Local and Global Settings Integrators must take local and global settings into consideration when designing host application that utilizes MUX. AT commands with settings are identified as either global or local under Parameter Setting of the AT commands characteristic table in the AT commands manual [2]. For example the table for +CNMI is as follows. Command Long SIM Parameter Affected Works Works CFUN Abortable Execution Required Setting by &F, with with Modes &W USB MUX No No Yes Local Yes Yes Yes 1,4,5 Under Parameter Setting : Local - means that a change to the setting will only take affect in the channel where the change was made. For example, if the user has 2 MUX channels active, and make a change to a Local parameter on one MUX channel, the other MUX channel would not see the change. One example is the AT+CNMI setting. Global - means that if a change to a setting is made on any channel, all channels will see the affect of the change. For example, if a change is made on one MUX channel, any other active MUX channel would also experience the change. One example is the AT+CGDCONT setting. ATZ, AT&V and AT&W allow the user to restore, view and store the current profile parameters in non-volatile memory. AT&Y specifies which profile gets loaded on start-up of GR/GS64 wireless CPU. In the MUX mode, the last channel that executes the AT&W command has its local setting stored which is persistent through power cycle. Most of the unsolicited responses (such as +CREG, +CGREG, +CGEV, +CMTI, +CIEV, *ECIND) are local to a channel. They are only outputted in channels that have the unsolicited responses turned on. For example for two active MUX channels, if only channel one has AT+CREG=1 or AT+CREG=2 set, +CREG unsolicited response only get outputted in channel one. On the other hand, unsolicited response RING or +CRING (depending on the AT+CRC setting) comes out of all MUX channels. Page: 13/24

14 Some local settings may cause global activities and should only be set in one channel. For instance ATS0 and AT+CGAUTO should not be used in more than one channel. 6.2 AT Commands Not Applicable in MUX Mode Some AT commands are not applicable in MUX mode. One such an example is AT+CMUX command AT+CMUX set command returns ERROR in MUX mode. Another example is AT+IPR command this command may be issued in MUX mode but it will have no effect on the channel s operation. One can find whether or not a command works with MUX in the AT commands characteristic table under Works with MUX. 6.3 Air Interface Limitation Although MUX provides capability to multiplex on the serial link, the air link is not multiplexed; all the limitations of air link still apply in MUX mode. GR/GS64 wireless CPU is a mobile class B device; as a result, simultaneous GPRS data and circuit-switched transactions (such as voice calls) are not possible. For GR/GS64, GPRS will temporarily suspend to support circuit-switched activities such as CS SMS, Location Updates and voice calls. After the circuit-switched transactions finish, GPRS is resumed. In serial mode, in order to perform any MO CS transactions a host application has to explicitly suspend or escape out of a GPRS data session. But in the MUX mode, both MO and MT CS activities can happen while the GPRS session is ongoing, which in turn makes the air link limitation an important design consideration in the MUX mode. 6.4 Application Data Recovery As discussed in section 6.3, GPRS can be suspended due to the nature of mobile class B. A host application needs to have an application level mechanism to handle the possibility of temporary data loss - either through a reliable transport protocol such as TCP or other application layer re-transmission mechanisms. Measures can also be taken to reduce the occurrence of GPRS suspension during heavy GPRS data traffic. This can be managed by scheduling MO Circuit Switched activities properly. Since MO CS SMS messages are more widely supported by carriers than Packet Switched (GPRS) SMS messages, the default AT+CGSMS setting of 3 (i.e. Circuit Switched preferred SMS) is used for simultaneous GPRS and MO SMS. In this case scheduling would be beneficial. On the other hand, a basic mode does not guarantee reliable transmission of user data through virtual channels. In basic mode only UIH frames are used to carry user data and by definition, only headers are checked against FCS. Moreover, basic mode tends to have long recovery time if frames become out-of-sync. Page: 14/24

15 Although in most practical situations serial links have very good quality and thus have very rare instances of transmission errors, host applications still have to make sure there are application level error detection and recovery mechanisms in place. 6.5 Flow Control and Buffer Management Figure 2 shows a typical set up for a host application that uses MUX feature. Buffers that are involved in the MUX data flow are also included in the figure. Four channels are used in this example. Figure 2: MUX data flow Individual channel flow control via MSC in the MUX mode is not as responsive as hardware flow control used in the serial mode. As shown in Figure 2, individual channel flow control (in Figure 2 flow control for DLC4 is shown) is applied at a higher level (MUX layer) than the layer that hardware flow control operates. As a result, deasserting virtual RTS on the host application side will stop flow on the GR/GS64 side slower than it will by hardware RTS signal. By the time the virtual RTS signal reaches the upper layer of target side, some data could have already transmitted over the serial link (e.g. from GR/GS64 UART IO buffer to Host UART IO buffer in Figure 2) and some data could have travelled from DLC buffers to the UART IO buffer (e.g. from DLC4 buffer to UART IO buffer on the GR/GS64 side in Figure 2). Data flow can not be stopped at the UART IO buffer layer either because there could be data from other Page: 15/24

16 channels in the UART IO buffer. As a result, individual data flow can not be stopped right away. This constraint is inherent to standard and a host application should size its receiving buffers accordingly and carefully manage the data flow. This can typically be accomplished by using a large buffer space to hold additional data or to start flow control request early. Since the UART IO buffer on the GR/GS64 side has a size of 8K, in the worst case a host application should allocate additional 8K bytes worth of buffer space for the channel that carries the largest amount of data. If possible, hardware flow control signals (RTS and CTS) should be enabled even in the MUX mode. GR/GS64 relies on hardware flow control to provide fast aggregate flow control on the serial link on top of Individual channel flow controls. If using large buffers for individual channel flow control is not feasible, hardware flow control is required to make sure there is no data loss. 6.6 Overhead and Timing Considerations When multiple MUX channels are used, multiple data streams share a single underlying serial link and thus an individual channel only gets a portion of the serial link bandwidth MUX frames have 6 bytes overhead as shown in the table below. As a result, a host application needs to determine what it should use as the maximum frame size. Although overhead of MUX frames does not translate to air interface overhead, it could change timing of the user data flow and buffer space requirements on the host application side. If the frame size gets smaller, overhead becomes proportionally higher. On the other hand, the larger the frame size, the more likely a frame error happens a bit error is more likely to cause a frame error for a large frame than for a small frame. Address Control Length Information FCS Indicator 1 octet 1 octet 1 octet 1 octet Integral number of 1 octet 1 octet octets The overhead of MUX frames and sharing of the underlying serial link could cause a timing difference on how a host application receives and responds to user data. The number of channels has a direct impact on the how much timing difference a host application sees. This is because data from different channels will be put into a shared UART IO buffer before they are sent through the serial link and a heavily utilized channel may affect the throughput of other channels. Page: 16/24

17 6.7 Optimal Channel Usage A host application can choose to use more than two channels. For example, one for AT commands such as SMS commands and +CSQ command, one for unsolicited responses, and one or more for on board TCP/IP socket connections, where each socket connection runs in a separate channel. It is generally good idea that a host application uses as few numbers of channels as possible, thereby minimizing the use of resources (memory, processing power, etc.) on both the host application side and GR/GS64 side. Although user data channels have same priorities, as explained in section 6.6, a heavily utilized channel could delay the servicing of other channels. The number of channels should be carefully considered up front for the host application design. 7 Host Side MUX Driver Designs In a typical host application that uses MUX, is part of a port driver which includes a port emulation entity that supports serial communication APIs. The communication APIs vary from operating system to operating system and from device to device standard defines a set of services such as Request, Indication, Response, and Confirmation that can be used by all port drivers. The services are shown in the Figure 3. Page: 17/24

18 DTE Application Write Control Read Port Emulation Entity Port interface e.g. Wavecom CMUx dirver DCE Request Control Parameters Response Control Parameters Confirm Parameter Setting Indication Parameter Setting service interface Figure 3: interfaces Wavecom provides a Microsoft Windows XP CMUX driver if integrators request it from Wavecom sales representatives and FAEs. This CMUX driver creates virtual com ports for MUX channels. Many Windows application programs such as dial-up networking, hyper terminal and ProComm can run directly on these virtual com ports. Wavecom CMUX driver version and above should be used with GR/GS64 products. Serial port monitoring tools are helpful when it comes to debugging or evaluating the host side MUX driver. Here are two examples of commonly used tools: Free Serial Port Monitor ( Portmon ( 8 References 1. 3GPP TS V3.4.0 ( ) Terminal Equipment to User Equipment (TE-UE) multiplexer protocol (Release 1999) 2. AT Command Manual for GR64 & GS64 Page: 18/24

19 Appendix A Basic MUX Procedures To facilitate the understanding of the specification and the basic MUX procedures, an example sequence of MUX frames is provided below. Note in the following examples: stands for the flow from TE to MS and stands for flows from MS to TE. If not otherwise specified all the octets below are Hexadecimal. For example, F9 really means 0xF9. The sequence is taken from communication between Wavecom MUX driver and GR/GS64. For more information on how to decode the frames, please refer to [1]. 1) Enable MUX control channel by issuing AT+CMUX=0,0,5,31,10,3,15,10<CR>. 2) Send SABM on DLC 0 to start up the MUX. If SABM is not received on DLC0 within the timer T3 (The eighth parameter of +CMUX command). GR/GS64 returns to AT command mode. F9 03 3F 01 1C F9 F9 03 3F 01 1C F9 DLC 0 SABM Length = 0 FCS Closing F D7 F9 F D7 F9 DLC 0 UA Length = 0 FCS Closing 3) Establish DLC 1 F9 03 FF A 1F FB F9 F9 03 FF DLC 0 UIH Length 10 Parameter Negotiation Command Length 8 DLC 1 Covergence Layer type A 1F FB F9 Page: 19/24

20 Priority: 1 T1: 10 N1: 31 N1: 0 Lower 8 bit Higher 8 bits N2: 3 K: 1 FCS Closing F9 03 FF A 1F FB F9 F9 03 FF DLC 0 UIH Length 10 Parameter Negotiation Response Length 8 DLC 1 Covergence Layer type A 1F FB F9 Priority: 1 T1: 10 N1: 31 N1: 0 Lower 8 bit Higher 8 bits N2: 0* K: 0* FCS Closing * GR/GS64 only supports parameter negotiation of N1: Maximum Frame Size. As a result both N2 and K parameters are set to 0. * Windows size K is not applicable in basic option F9 07 3F 01 DE F9 F9 07 3F 01 DE F9 DLC 1 SABM Length = 0 FCS Closing F F9 F F9 DLC 1 UA Length = 0 FCS Closing Establish DLC2 F9 03 FF A 1F FB F9 F9 03 FF Page: 20/24

21 DLC 0 UIH Length 10 Parameter Negotiation Command Length 8 DLC 2 Covergence Layer type A 1F FB F9 Priority: 1 T1: 10 N1: 31 N1 Lower 8 bit Higher 8 bits N2: 3 K: 1 FCS Closing F9 03 FF A 1F FB F9 F9 03 FF DLC 0 UIH Length 10 Parameter Negotiation Response Length 8 DLC 2 Covergence Layer type A 1F FB F9 Priority: 1 T1: 10 N1: 31 N1: 0 Lower 8 bit Higher 8 bits N2: 0* K: 0* FCS Closing F9 0B 3F F9 F9 0B 3F F9 DLC 2 SABM Length = 0 FCS Closing F9 0B F9 F9 0B F9 Page: 21/24

22 DLC 2 UA Length = 0 FCS Closing 4) DLC1 Modem Status Command F9 03 FF 09 E EE F9 F9 03 FF 09 E3 05 DLC 0 UIH Type Length = 4 MSC Type Command Length= EE F9 DLC 1 V.24 signal FCS Closing F9 03 FF 09 E EE F9 F9 03 FF 09 E1 05 DLC 0 UIH Type Length = 4 MSC Type Command Length= EE F9 DLC 1 V.24 signal FCS Closing Page: 22/24

23 5) Close down MUX F FD F9 F FD F9 DLC 0 DISC Length = 0 FCS Closing F F9 F9 0B F9 F D7 F9 F F9 DLC 1 UA Length = 0 FCS Closing F9 0B F9 DLC 2 UA Length = 0 FCS Closing F D7 F9 DLC 0 UA Length = 0 FCS Closing Page: 23/24

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

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

APPLICATION NOTE GR/GS64 General Purpose and Alternate Function I/O. Reference: WI_DEV_Gx64_APN_008 Revision: 001 Date: 2006/12/15 Reference: WI_DEV_Gx64_APN_008 Revision: 001 Date: 2006/12/15 The information contained in this document is the proprietary information of Wavecom Inc. The contents are confidential and any disclosure

More information

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GSM Multiplexer Application Notes GSM_MUX_AN_V1.00 Document Title GSM Multiplexer Application Notes Version 1.00 Date 2009-06-27 Status Document Control ID Release GSM_MUX_AN_V1.00 General

More information

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

BLUETOOTH SERIAL PORT PROFILE. iwrap APPLICATION NOTE

BLUETOOTH SERIAL PORT PROFILE. iwrap APPLICATION NOTE BLUETOOTH SERIAL PORT PROFILE iwrap APPLICATION NOTE Thursday, 19 April 2012 Version 1.2 Copyright 2000-2012 Bluegiga Technologies All rights reserved. Bluegiga Technologies assumes no responsibility for

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

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

ETSI TS 127 010 V4.2.0 (2002-03)

ETSI TS 127 010 V4.2.0 (2002-03) TS 127 010 V4.2.0 (2002-03) Technical Specification Digital cellular telecommunications system (Phase 2+) (GSM); Universal Mobile Telecommunications System (UMTS); Terminal Equipment to Mobile Station

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

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

RTU-COM with GSM. User Notes and Short Form AT Commond Survey

RTU-COM with GSM. User Notes and Short Form AT Commond Survey 1 RTU-COM with GSM User Notes and Short Form AT Commond Survey V. 1.00 / Feb 2006 / Doc 40143 2 1. Introduction This document is a guide for using GSM communication and GSM data accounts, and changing

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

AN_2901CE_001 JULY 2005

AN_2901CE_001 JULY 2005 73M2901CE V.22 bis Single Chip Modem A Maxim Integrated Products Brand APPLICATION NOTE AN_2901CE_001 JULY 2005 Introduction V.23 is a FSK modem standard that is defined by ITU regulations. V.23 has been

More information

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GPRS Startup User Guide GPRS_Startup_UGD_V1.01 Document Title GPRS Startup User Guide Version 1.01 Date 2009-11-16 Status Document Control ID Release GPRS_Startup_UGD_V1.01 General Notes

More information

PROPERTY MANAGEMENT SYSTEM

PROPERTY MANAGEMENT SYSTEM PROPERTY MANAGEMENT SYSTEM COMMUNICATION INTERFACE SPECIFICATION NEC America, Inc. NDA-305-00 Revision.0 June, 998 Stock # 24727 LIABILITY DISCLAIMER NEC America reserves the right to change the specifications,

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

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

High-Level Data Link Control

High-Level Data Link Control High-Level Data Link Control This class of data link layer protocols includes High-level Data Link Control (HDLC), Link Access Procedure Balanced (LAPB) for X.25, Link Access Procedure for D-channel (LAPD)

More information

The Shift to Wireless Data Communication

The Shift to Wireless Data Communication The Shift to Wireless Data Communication Choosing a Cellular Solution for Connecting Devices to a WWAN Dana Lee, Senior Product Manager dana.lee@moxa.com Recent developments in the wireless and industrial

More information

Objectives. Basics of Serial Communication. Simplex vs Duplex. CMPE328 Microprocessors (Spring 2007-08) Serial Interfacing. By Dr.

Objectives. Basics of Serial Communication. Simplex vs Duplex. CMPE328 Microprocessors (Spring 2007-08) Serial Interfacing. By Dr. CMPE328 Microprocessors (Spring 27-8) Serial Interfacing By Dr. Mehmet Bodur Objectives Upon completion of this chapter, you will be able to: List the advantages of serial communication over parallel communication

More information

Configuring IP to Serial with Auto Answer and Serial to IP

Configuring IP to Serial with Auto Answer and Serial to IP Configuring IP to Serial with Auto Answer and Serial to IP You can configure the AirLink device to: Auto answer incoming TCP/IP or UDP/IP connections and send the packet payload out the AirLink device

More information

RFCOMM WITH TS 07.10

RFCOMM WITH TS 07.10 BLUETOOTH Date / Year-Month-Day Approved Revision Document No DOC 2012-11-06 Adopted V12 RFCOMM_SPEC Prepared By E-mail Address N.B. BARB Barb-main@bluetooth.org RFCOMM WITH TS 07.10 Serial Port Emulation

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

When we look at the connector pinout of the RS232 port, we see two pins which are certainly used

When we look at the connector pinout of the RS232 port, we see two pins which are certainly used 1 Null modem - an introduction Serial communications with RS232 1. One of the oldest and most widely spread communication methods in computer world. The way this type of communication can be performed

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

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

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

Transport Layer Protocols

Transport Layer Protocols Transport Layer Protocols Version. Transport layer performs two main tasks for the application layer by using the network layer. It provides end to end communication between two applications, and implements

More information

CMUX User Guide 30268ST10299A Rev. 3 19/01/09

CMUX User Guide 30268ST10299A Rev. 3 19/01/09 This document is referred to the following products: APPLICABILITY TABLE PRODUCT PART NUMBER (1) GT864-QUAD 4990150069 GT864-PY 4990150070 GM862-GPS GM862-QUAD-PY GM862-QUAD GC864-QUAD GC864-PY GC864-QUAD-C2

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

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

SMS Application Note. SIM5360_SMS_Application_Note_V0.01

SMS Application Note. SIM5360_SMS_Application_Note_V0.01 SMS Application Note 0 Document Title: SIM5360 SMS Application Note Version: 0.01 Date: 2014-02-21 Status: Document ID: Developing General Notes Simcom offers this information as a service to its customers,

More information

LS-101 LAN to Serial Device server. User s Manual

LS-101 LAN to Serial Device server. User s Manual LS-101 LAN to Serial Device server User s Manual Revision History Revision No Date Author Remarks 0.1 August 29, 2001 IDC Initial document INTRODUCTION Overview Almost all instruments and most industrial

More information

Installation & Configuration Manuel. Socket Server. OpenAT application

Installation & Configuration Manuel. Socket Server. OpenAT application Installation & Configuration Manuel Socket Server OpenAT application 2009 / 05 / 29 2 ! CAUTION! ELECTRIC SHOCK HAZARD IF COVER REMOVED SERVICE BY QUALIFIED PERSONEL ONLY Document History Date Version

More information

Computer Network. Interconnected collection of autonomous computers that are able to exchange information

Computer Network. Interconnected collection of autonomous computers that are able to exchange information Introduction Computer Network. Interconnected collection of autonomous computers that are able to exchange information No master/slave relationship between the computers in the network Data Communications.

More information

ESPA 4.4.4 Nov 1984 PROPOSAL FOR SERIAL DATA INTERFACE FOR PAGING EQUIPMENT CONTENTS 1. INTRODUCTION 2. CHARACTER DESCRIPTION

ESPA 4.4.4 Nov 1984 PROPOSAL FOR SERIAL DATA INTERFACE FOR PAGING EQUIPMENT CONTENTS 1. INTRODUCTION 2. CHARACTER DESCRIPTION PROPOSAL FOR SERIAL DATA INTERFACE FOR PAGING EQUIPMENT CONTENTS 1. INTRODUCTION 2. CHARACTER DESCRIPTION 2.1 CHARACTER STRUCTURE 2.2 THE CHARACTER SET 2.3 CONTROL CHARACTERS 2.3.1 Transmission control

More information

F2103 GPRS DTU USER MANUAL

F2103 GPRS DTU USER MANUAL F2103 GPRS DTU USER MANUAL Add:J1-J2,3rd Floor,No.44,GuanRi Road,SoftWare Park,XiaMen,China 1 Zip Code:361008 Contents Chapter 1 Brief Introduction of Product... 3 1.1 General... 3 1.2 Product Features...

More information

Remote Serial over IP Introduction on serial connections via IP/Ethernet

Remote Serial over IP Introduction on serial connections via IP/Ethernet Remote Serial over IP Introduction on serial connections via IP/Ethernet TABLE OF CONTENT TABLE OF CONTENT... I TABLE OF IMAGES... I INTRODUCTION... 1 Classic Style of Communication... 1 Ethernet and

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

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

U10. Quectel Cellular Engine. Video Call Application Notes. U10_ Video_Call_AN_V1.0

U10. Quectel Cellular Engine. Video Call Application Notes. U10_ Video_Call_AN_V1.0 U10 Cellular Engine Video Call Application Notes U10_ Video_Call_AN_V1.0 Document Title Video Call Application Notes Version 1.0 Date 2012-05-22 Status Document Control ID Released U10_Video_Call_AN_V1.0

More information

The Secrets of Flow Control in Serial Communication

The Secrets of Flow Control in Serial Communication in Serial Communication Casper Yang, Senior Product Manager support@moxa.com Although RS-232/422/485 serial communication is no longer considered to be high speed, flow control is still an important function

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

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GSM FTP AT Commands GSM_FTP_ATC_V1.1 Document Title GSM FTP AT Commands Version 1.1 Date 2010-12-28 Status Document Control ID Release GSM_FTP_ATC_V1.1 General Notes offers this information

More information

TCPIP Application Note for WCDMA Solution V2.0

TCPIP Application Note for WCDMA Solution V2.0 TCPIP Application Note for WCDMA Solution V2.0 Scope SIM5218, SIM5215, SIM5216, SIM5320 Reference SIMCOM_SIM5320_Serial_ATC_EN_V1.26.doc -1-2012-11-20 Content 1. External PPP Setting...3 2. SIMCom Internal

More information

This chapter discusses Synchronous Data Link Control (SDLC) protocols that you can configure on a BANDIT device s ports. See the following sections:

This chapter discusses Synchronous Data Link Control (SDLC) protocols that you can configure on a BANDIT device s ports. See the following sections: encor! enetworks TM Version A, September 2010 2010 Encore Networks, Inc. All rights reserved. SDLC Protocol Configuration This chapter discusses Synchronous Data Link Control (SDLC) protocols that you

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

WHQL Certification Approval...2 User Interface...3 128K software FIFO 4 Universal PCI Interface...5 Ready for 64-bit System...5

WHQL Certification Approval...2 User Interface...3 128K software FIFO 4 Universal PCI Interface...5 Ready for 64-bit System...5 0 INDEX WHQL Certification Approval...2 User Interface...3 128K software FIFO 4 Universal PCI Interface...5 Ready for 64-bit System...5 1.0 Introduction 6 2.0 Features.. 6 3.0 Hardware Guide... 7 3.1 System

More information

Serial Communications

Serial Communications Serial Communications 1 Serial Communication Introduction Serial communication buses Asynchronous and synchronous communication UART block diagram UART clock requirements Programming the UARTs Operation

More information

White Paper. Real-time Capabilities for Linux SGI REACT Real-Time for Linux

White Paper. Real-time Capabilities for Linux SGI REACT Real-Time for Linux White Paper Real-time Capabilities for Linux SGI REACT Real-Time for Linux Abstract This white paper describes the real-time capabilities provided by SGI REACT Real-Time for Linux. software. REACT enables

More information

RN-XV-RD2 Evaluation Board

RN-XV-RD2 Evaluation Board RN-XV-RD2 Evaluation Board 2012 Roving Networks. All rights reserved. -1.01Version 1.0 9/28/2012 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks RN-XV-RD2

More information

WHQL Certification Approval...2 User Interface...3 SUNIX s COMLab..4

WHQL Certification Approval...2 User Interface...3 SUNIX s COMLab..4 INDEX WHQL Certification Approval...2 User Interface....3 SUNIX s COMLab..4 1.0 Introduction...5 2.0 Specification..5 2.1 Features 2.2 Universal Serial PCI Card 2.3 RS-232 Specification 2.4 Low Profile

More information

SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual

SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual Version 1.0 - January 20, 2015 CHANGE HISTORY Version Date Description of Changes 1.0 January 20, 2015 Initial Publication

More information

How To Set Up A Modbus Cda On A Pc Or Maca (Powerline) With A Powerline (Powergen) And A Powergen (Powerbee) (Powernet) (Operating System) (Control Microsci

How To Set Up A Modbus Cda On A Pc Or Maca (Powerline) With A Powerline (Powergen) And A Powergen (Powerbee) (Powernet) (Operating System) (Control Microsci Firmware Loader User Manual CONTROL MICROSYSTEMS SCADA products... for the distance 48 Steacie Drive Telephone: 613-591-1943 Kanata, Ontario Facsimile: 613-591-1022 K2K 2A9 Technical Support: 888-226-6876

More information

WAN Data Link Protocols

WAN Data Link Protocols WAN Data Link Protocols In addition to Physical layer devices, WANs require Data Link layer protocols to establish the link across the communication line from the sending to the receiving device. 1 Data

More information

Elo Interactive Digital Signage (IDS): Remote Management

Elo Interactive Digital Signage (IDS): Remote Management APPLICATION NOTES Elo Interactive Digital Signage (IDS): Remote Management Large signage installations require a way to manage the devices from a central location. Elo IDS displays are designed with this

More information

Data sheet Wireless UART firmware version 4.02

Data sheet Wireless UART firmware version 4.02 Data sheet Wireless UART firmware version 4.02 BLUETOOTH is a trademark owned by Bluetooth SIG, Inc., U.S.A. and licensed to Free2move Rev: 22 December 2008 Table of contents 1 GENERAL INFORMATION...4

More information

Protocols and Architecture. Protocol Architecture.

Protocols and Architecture. Protocol Architecture. Protocols and Architecture Protocol Architecture. Layered structure of hardware and software to support exchange of data between systems/distributed applications Set of rules for transmission of data between

More information

COMMUNICATION NETWORKS WITH LAYERED ARCHITECTURES. Gene Robinson E.A.Robinsson Consulting 972 529-6395 ROB1200@aol.com

COMMUNICATION NETWORKS WITH LAYERED ARCHITECTURES. Gene Robinson E.A.Robinsson Consulting 972 529-6395 ROB1200@aol.com COMMUNICATION NETWORKS WITH LAYERED ARCHITECTURES Gene Robinson E.A.Robinsson Consulting 972 529-6395 ROB1200@aol.com 9 March 1999 IEEE802 N-WEST STANDARDS MEETING FOR BROADBAND WIRELESS ACCESS SYSTEMS

More information

Measurement and Analysis Introduction of ISO7816 (Smart Card)

Measurement and Analysis Introduction of ISO7816 (Smart Card) Measurement and Analysis Introduction of ISO7816 (Smart Card) ISO 7816 is an international standard related to electronic identification cards with contacts, especially smart cards, managed jointly by

More information

CONTROL MICROSYSTEMS DNP3. User and Reference Manual

CONTROL MICROSYSTEMS DNP3. User and Reference Manual DNP3 User and Reference Manual CONTROL MICROSYSTEMS SCADA products... for the distance 48 Steacie Drive Telephone: 613-591-1943 Kanata, Ontario Facsimile: 613-591-1022 K2K 2A9 Technical Support: 888-226-6876

More information

CSMA/CA. Information Networks p. 1

CSMA/CA. Information Networks p. 1 Information Networks p. 1 CSMA/CA IEEE 802.11 standard for WLAN defines a distributed coordination function (DCF) for sharing access to the medium based on the CSMA/CA protocol Collision detection is not

More information

ARIB STD-T64-C.S0042 v1.0 Circuit-Switched Video Conferencing Services

ARIB STD-T64-C.S0042 v1.0 Circuit-Switched Video Conferencing Services ARIB STD-T-C.S00 v.0 Circuit-Switched Video Conferencing Services Refer to "Industrial Property Rights (IPR)" in the preface of ARIB STD-T for Related Industrial Property Rights. Refer to "Notice" in the

More information

Real Time Web based Vehicle Tracking using GPS

Real Time Web based Vehicle Tracking using GPS Real Time Web based Vehicle Tracking using GPS Muruganandham, P.R.Mukesh Abstract Tracking systems were first developed for the shipping industry because they wanted to determine where each vehicle was

More information

UNIVERSAL POWER-LINE CARRIER SYSTEM TYPE OPU-1

UNIVERSAL POWER-LINE CARRIER SYSTEM TYPE OPU-1 UNIVERSAL POWER-LINE CARRIER SYSTEM TYPE OPU-1 WHOLE BAND QAM MODEM MBPU Rev. 0 - July 2011 DIMAT Antonio Machado,78-80 08840 Viladecans, Barcelona-Spain Tel.: +34 933 490 700 Fax: +34 933 492 258 Mail

More information

Computer Networks. Chapter 5 Transport Protocols

Computer Networks. Chapter 5 Transport Protocols Computer Networks Chapter 5 Transport Protocols Transport Protocol Provides end-to-end transport Hides the network details Transport protocol or service (TS) offers: Different types of services QoS Data

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

Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia E70 Configuring connection settings Nokia E70 Configuring connection settings Legal Notice Copyright Nokia 2006. All

More information

2-Port RS232/422/485 Combo Serial PCI Card

2-Port RS232/422/485 Combo Serial PCI Card 2-Port RS232/422/485 Combo Serial PCI Card Installation Guide 1. Introduction Thank you for purchasing this 2-Port RS232/422/485 Combo Serial PCI Card. It is a universal add in card that connects to a

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

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

RS-232 Baud Rate Converter CE Model 232BRC Documentation Number 232BRC-3903 (pn5104-r003)

RS-232 Baud Rate Converter CE Model 232BRC Documentation Number 232BRC-3903 (pn5104-r003) S-232 Baud ate Converter CE Model 232BC Documentation Number 232BC-3903 (pn5104-r003) International Headquarters B&B Electronics Mfg. Co. Inc. 707 Dayton oad -- P.O. Box 1040 -- Ottawa, IL 61350 USA Phone

More information

Industrial Multi-port Serial Cards

Industrial Multi-port Serial Cards SUNIX I.N.C. Success Stories Industrial Multi-port Cards Multi-port Cards Introduction & Features Universal PCI Cards - Lite Interface Cards RS-232/422/485 Interface Cards PCI Express Cards - Lite Interface

More information

User Manuals. Connection to Siemens S5 PU (AS511) Part Number: 80860.699. Version: 2. Date: 18.10.2006

User Manuals. Connection to Siemens S5 PU (AS511) Part Number: 80860.699. Version: 2. Date: 18.10.2006 User Manual Connection to Siemens S5 PU (AS511) Part Number: 80860.699 Version: 2 Date: 18.10.2006 Valid for: User Manuals Version Date Modifications 1 09.06.2006 First Edition 2 18.10.2006 Optimized data

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

isco Connecting Routers Back to Back Through the AUX P

isco Connecting Routers Back to Back Through the AUX P isco Connecting Routers Back to Back Through the AUX P Table of Contents Connecting Routers Back to Back Through the AUX Ports...1 Introduction...1 Before You Begin...1 Conventions...1 Prerequisites...1

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

GSM Interfacing Board

GSM Interfacing Board Campus Component Pvt. Ltd. DISCLAIMER Information furnished is believed to be accurate and reliable at the time of publication. However, Campus Component Pvt. Ltd. assumes no responsibility arising from

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

DSL Forum Technical Report TR-054

DSL Forum Technical Report TR-054 DSL Forum Technical Report TR-054 (Formerly WT-074v1) Updates and supercedes TR-038 DSL Service Flow-Through Fulfillment Management Overview Abstract: August 2002 This Working Text defines the first set

More information

GSM. Quectel Cellular Engine. HTTP Service AT Commands GSM_HTTP_ATC_V1.2

GSM. Quectel Cellular Engine. HTTP Service AT Commands GSM_HTTP_ATC_V1.2 GSM Cellular Engine HTTP Service AT Commands GSM_HTTP_ATC_V1.2 Document Title HTTP Service AT Commands Version 1.2 Date 2015-04-13 Status Document Control ID Release GSM_HTTP_ATC_V1.2 General Notes offers

More information

Chapter 2 - The TCP/IP and OSI Networking Models

Chapter 2 - The TCP/IP and OSI Networking Models Chapter 2 - The TCP/IP and OSI Networking Models TCP/IP : Transmission Control Protocol/Internet Protocol OSI : Open System Interconnection RFC Request for Comments TCP/IP Architecture Layers Application

More information

How to setup a serial Bluetooth adapter Master Guide

How to setup a serial Bluetooth adapter Master Guide How to setup a serial Bluetooth adapter Master Guide Nordfield.com Our serial Bluetooth adapters part UCBT232B and UCBT232EXA can be setup and paired using a Bluetooth management software called BlueSoleil

More information

Maestro Heritage. GSM GPRS Modem 850 / 900 / 1800 / 1900 USER MANUAL Rev. 03

Maestro Heritage. GSM GPRS Modem 850 / 900 / 1800 / 1900 USER MANUAL Rev. 03 Maestro Heritage GSM GPRS Modem 850 / 900 / 1800 / 1900 USER MANUAL Rev. 03 www.maestro-wireless.com Email: contact@maestro-wireless.com Tel: 852 2869 0688 Fax: 852 2525 4701 Address: Room 3603-3609, 36/F,

More information

Appendix A. This Appendix includes the following supplemental material:

Appendix A. This Appendix includes the following supplemental material: Appendix A This Appendix includes the following supplemental material: Cabling Diagrams and Instructions Connectors (9-pin D-type) Data Transfer Protocols Usage/Handshaking Ultimax Dual Screen Console

More information

2. What is the maximum value of each octet in an IP address? A. 128 B. 255 C. 256 D. None of the above

2. What is the maximum value of each octet in an IP address? A. 128 B. 255 C. 256 D. None of the above 1. How many bits are in an IP address? A. 16 B. 32 C. 64 2. What is the maximum value of each octet in an IP address? A. 128 B. 255 C. 256 3. The network number plays what part in an IP address? A. It

More information

IPRS-7 IP/GPRS PC Receiver Software Quick Start V1.2

IPRS-7 IP/GPRS PC Receiver Software Quick Start V1.2 IPRS-7 IP/GPRS PC Receiver Software Quick Start V1.2 Overview Introduction Before You Begin Installation The IPRS-7 Main Page Configuring the IPRS-7 (IPRS-7 splash screen pictured) Introduction The IPRS-7

More information

PPP encapsulation has been carefully designed to retain compatibility with most commonly used supporting hardware. PPP encapsulates data frames for

PPP encapsulation has been carefully designed to retain compatibility with most commonly used supporting hardware. PPP encapsulates data frames for PPP Concept 1 What is PPP? Recall that HDLC is the default serial encapsulation method when you connect two Cisco routers. With an added protocol type field, the Cisco version of HDLC is proprietary. Thus,

More information

FarSync T2Ue. A 2 port PCI Express synchronous communications adapter

FarSync T2Ue. A 2 port PCI Express synchronous communications adapter FarSync T2Ue A 2 port PCI Express synchronous communications adapter Key Features PCI Express bus mastering WAN adapter 2 synchronous ports Network interfaces for RS232C, X.21, RS530, RS449 and V.35 Wide

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

Manual Serial PCI Cards

Manual Serial PCI Cards Manual Serial PCI Cards W&T Models 13011, 13410 13411, 13610 13611, 13812 Version 1.4 Subject to error and alteration 37 01/2005 by Wiesemann & Theis GmbH Subject to errors and changes: Since we can make

More information

Siemens DECT Engine MD32. Product Description. Information and Communication Products

Siemens DECT Engine MD32. Product Description. Information and Communication Products Siemens DECT Engine MD32 Product Description Siemens DECT Engine MD32 1/16 Product Description The Siemens DECT Engine MD32 is a module offering an easy way to provide a radio connection for data transmission

More information

MBP_MSTR: Modbus Plus Master 12

MBP_MSTR: Modbus Plus Master 12 Unity Pro MBP_MSTR 33002527 07/2011 MBP_MSTR: Modbus Plus Master 12 Introduction This chapter describes the MBP_MSTR block. What s in this Chapter? This chapter contains the following topics: Topic Page

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

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

PPP (Point-to-Point Protocol)

PPP (Point-to-Point Protocol) PPP (Point-to-Point Protocol) PPP (Point-to-Point Protocol) is the most widely used method for transporting IP packets over a serial link between the user and the Internet Service Provider (ISP). Although

More information

Chapter 3: Operating-System Structures. System Components Operating System Services System Calls System Programs System Structure Virtual Machines

Chapter 3: Operating-System Structures. System Components Operating System Services System Calls System Programs System Structure Virtual Machines Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines Operating System Concepts 3.1 Common System Components

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

User's Guide bintec R4100 / R4300 Serial Unit. Copyright July 17, 2006 Funkwerk Enterprise Communications GmbH Version 0.9

User's Guide bintec R4100 / R4300 Serial Unit. Copyright July 17, 2006 Funkwerk Enterprise Communications GmbH Version 0.9 User's Guide bintec R4100 / R4300 Serial Unit Copyright July 17, 2006 Funkwerk Enterprise Communications GmbH Version 0.9 Purpose Liability Trademarks Copyright Guidelines and standards How to reach Funkwerk

More information

This course has been retired. View the schedule of current <a href=http://www.ptr.co.uk/networkingcourses.htm>networking

This course has been retired. View the schedule of current <a href=http://www.ptr.co.uk/networkingcourses.htm>networking Introduction to Data Communications & Networking Course Description: This course has been retired. View the schedule of current networking Courses

More information

Chapter 7 Low-Speed Wireless Local Area Networks

Chapter 7 Low-Speed Wireless Local Area Networks Wireless# Guide to Wireless Communications 7-1 Chapter 7 Low-Speed Wireless Local Area Networks At a Glance Instructor s Manual Table of Contents Overview Objectives s Quick Quizzes Class Discussion Topics

More information