ON THE USE OF AT COMMANDS FOR CONTROLING THE MOBILE PHONE WITH MICROCONTROLLER LABORATORY EXERCISE

Size: px
Start display at page:

Download "ON THE USE OF AT COMMANDS FOR CONTROLING THE MOBILE PHONE WITH MICROCONTROLLER LABORATORY EXERCISE"

Transcription

1 2007 Poznańskie Warsztaty Telekomunikacyjne Poznań 6-7 grudnia 2007 P OZNAN POZNAN UNIVERSIT UNIVERSITY Y OF OF TECHNOLOGY ACADEMIC ACADEMIC JOURNALS JOURNALS No 54 Electrical Engineering 2007 Adrian KLIKS* Paweł SROKA* ON THE USE OF AT COMMANDS FOR CONTROLING THE MOBILE PHONE WITH MICROCONTROLLER LABORATORY EXERCISE In this paper an example of exercise for the microprocessor or wireless communications laboratory is presented. The idea of the exercise is to use the AT commands to control the mobile phone or GSM/GPRS modem. The paper describes the exercise in every detail including the explanation of formulating the AT commands and their use for SMS messaging. Two modes of SMS messaging are presented: the text mode and PDU mode. Message formulation rules are explained for the PDU mode including data encoding. Finally, a detailed description of the exercise is given including examples of the commands and responses obtained through the experiment. The proposed exercise gives opportunity to familiarize the student with mobile phone s features, that are unavailable when using the Graphical User Interface (GUI). Keywords: AT commands, SMS messaging, GSM, GPRS 1. INTRODUCTION Global System for Mobile Communication (GSM) has become in recent years a very common system of communication. With the great variety of GSM devices in the world market some standardized methods of controlling the phone behaviour and operations are required. Thus, the AT commands have been standardized by the European Telecommunications Standards Institute (ETSI), enabling the control of a GSM device using a microcontroller [1, 2]. In this paper we present an example of laboratory exercise explaining the use and syntax of AT commands. The proposed project relies on controling the mobile phone with the 8051 microcontroller connected using the RS232 interface. The SMS messaging system has been used to exemplify the appliance * Poznan University of Technology. PWT POZNAŃ 6-7 GRUDNIA /8

2 Adrian Kliks, Paweł Sroka of AT commands. This paper is organised as follows. Section 2 introduces the AT commands, their syntax and most notable examples. The SMS messaging system including the text mode and the PDU (Protocol Data Unit) mode has been explained in Section 3. This section also includes the examples of AT commands syntax for both modes, as well as the information formulation algorithm for the PDU mode. In Section 4 the system setup and exercise description has been presented. Finally, in Section 5 the conclusions are drawn. 2. AT COMMANDS AT (ATtention) commands, also known as Hayes commands, are used to control the dial-up modems, as well as mobile phones or GSM/GPRS modem. Every command starts with the AT or at prefix. Many of these commands used to control the dial-up modems are also supported by mobile phones and GSM/GPRS modems. The most notable examples are: ATD (dial), ATA (answer) or ATH (hook). Moreover, mobile phones and GSM/GPRS modems support an extended set of commands (starting with +) used for controlling features unavailable to the dial-up modems, such as sending and receiving the SMS messages. The examples of GSM specific commands are: AT+CMGS (send SMS message), AT+CMGR (read SMS message) or AT+CMGL (list SMS messages) [2, 4, 5]. The general syntax of extended AT commands is straightforward, as presented below [2]: AT+CMD1;+CMD2=10;+CMD3?;+CMD4=?<CR> For example: AT+CMGL= ALL ;+CGMI<CR> All command lines must start with AT prefix and end with the carriage return (represented as <CR> in this paper). A command line may contain more than one AT command, where only the first one should be prefixed with AT. The commands in the same line are separated with semicolons. All string parameters are enclosed within double quotes [2, 5]. The information responses and result codes always start and end with a carriage return character and linefeed (represented as <LF>) character. For example, after sending the command AT+CGMI<CR> the device should return a response similar to: <CR><LF>Nokia<CR><LF> PWT POZNAŃ 6-7 GRUDNIA /8

3 On the use of AT commands for controling the mobile phone with microcontroller <CR><LF>OK<CR><LF> One can use the AT commands to perform many specific task with a moblie phone or GSM/GPRS modem, such as [2, 4, 5]: get basic information about the phone or modem: name of manufacturer (AT+CGMI), model number (AT+CGMM), IMEI (International Mobile Equipment Identity) number (AT+CGSN) and software version (AT+CGMR). get information about the subscriber, for example the IMSI (International Mobile Subscriber Identity) number (AT+CIMI), get status information about the mobile phone or modem, for example: phone activity status (AT+CPAS), mobile network registration status (AT+CREG), radio signal strength (AT+CSQ) or battery charge level and charging status (AT+CBC), send (AT+CMGS, AT+CMSS), read (AT+CMGR, AT+CMGL), write (AT+CMGW) or delete (AT+CMGD) SMS messages or obtain notification of newly received SMS messages (AT+CNMI), get or change the configuration of the mobile phone or modem, for example: change the GSM network (AT+COPS), SMS center address (AT+CSCA) or storage of SMS messages (AT+CPMS). The mobile phone manufacturers usually do not implement all of the AT commands, command parameters or values in their devices. Moreover, some of the commands may require support from the operator, for example the transmission of SMS over GPRS. Thus, certain features described above may be unavailable, depending on the mobile phone model and network operator. 3. AT COMMANDS FOR SMS MESSAGING The SMS message can be up to 160 characters long, where each character is represented by 7 bits according to the 7-bit default alphabet. The mobile phone or GSM/GPRS modem may operate in two SMS modes: the text mode or the PDU (Protocol Data Unit) mode. The mode the mobile phone or modem is operating in determines the syntax of some of the AT commands and the format of the responses returned after execution. Many AT commands differ in syntax in the two available modes, for example: send message (+CMGS), read message (+CMGR), etc. Also there are two commands available only in the SMS text mode: set text mode parameters (+CSMP) and show text mode parameters (+CSDH) [1, 5]. PWT POZNAŃ 6-7 GRUDNIA /8

4 Adrian Kliks, Paweł Sroka 3.1. The text mode The text mode is just an encoding of the bit stream using specified characters from the alphabet. Alphabets may differ and there are several encoding alternatives when displaying an SMS message. The mobile phone or GSM/GPRS modem will choose a proper encoding, when reading a message, but the application is limited by the set of preset encoding options. Moreover, the text mode is unavailable on some phones. The text mode of SMS messaging is enabled by using the AT command AT+CMGF=1. The syntax of the AT command for sending the SMS message in the text mode is as follows [5]: AT+CMGS=" "<CR>message<Ctrl+z>, where is the recipient s number. In SMS text mode all components of the message: headers and body are treated as separate fields The PDU mode In the PDU mode the SMS message is represented as a binary stream of information, what can be very useful to send compressed or binary data. This mode is the default mode of SMS messaging and can be enabled by using the command AT+CMGF=0. The PDU string contains the message information, but also a lot of meta-information about the sender, SMS service center, the time stamp, etc. The syntax of the AT command for sending the SMS message in PDU mode is as follows [1, 6]: AT+CMGS=28<CR> F701000B F EDF27C1E3E9701<Ctrl+z> The message sequence comprises three parts [1, 6]: initial octet indicating the length of SMSC (SMS Service Center) information (07), the SMSC information ( F7), the Transport Protocol Data Unit (TPDU) in one of two possible forms: SMS-DELIVER (from network to phone) and SMS-SUBMIT (from phone to network). In the example presented above the message consists of 28 octets, which can be described as in Table 1 [6, 7]. All of the information is represented in form of hexadecimal octets or decimal semi-octets. So, the text information has to be converted from the 7-bit form to octet form. For example, message message is represented in Table 2. PWT POZNAŃ 6-7 GRUDNIA /8

5 On the use of AT commands for controling the mobile phone with microcontroller Table 1. Structure of the SMS-SUBMIT message Octet Description 07 Length of the SMSC information 91 Type of address of the SMSC (91 represents the international format of the phone number) F7 Service Center number (in decimal semi-octets). The length of the number is 11 digits, so a trailing F has been added. Also an internal swapping within the semioctets is performed (from 85 to 58, etc.) 01 First octet of the SMS-SUBMIT TPDU 00 TP-Message-Reference (if 00 the phone sets it itself) 0B Address length length of phone number 91 Type of recipient s address F4 The phone number in decimal semi-octets 00 TP-PID - protocol identifier 00 TP-DCS - data coding scheme (if 00 the default coding according to the 7-bit representation is used) <optional> TP-Validity Period 07 TP-User-Data-Length of message. The TP-DCS indicated the 7-bit representation, so the number represents length in septets (21hex = 33 septets) EDF27C1E3E9701 TP-User-Data message octets Table 2. The septet form of message "message m e s s a g e The conversion into octet form is performed by prepending the n-th septet with the n last bits from the n+1-th septet, as presented in Table 3. Then the rightmost n bits of the n+1-th septet are consumed and the process is repeated for the next septet. Table 3. Conversion from septet into octet form m E s s a g e ED F2 7C 1E 3E Althoug it is easier to use AT commands in the text mode, the PDU mode supports more features of SMS messaging. When using PDU mode one has got PWT POZNAŃ 6-7 GRUDNIA /8

6 Adrian Kliks, Paweł Sroka complete control over the header values and message body, thus can use all of the available features such as status reporting or setting the validity period [5, 6]. 4. EXERCISE DESCRIPTION In the proposed laboratory exercise the system is set up using a DSM-51 microcontroller kit (including the 8051 microcontroller) and two mobile phones: Sony-Ericsson T68i connected to the DSM-51 kit using the RS232 interface (serving as a transmitter) and Nokia 6020 serving as a receiver. The system set up is shown in Fig. 1 and Fig. 3. Fig. 1. System set up for the proposed exercise The exercise is divided into four parts, including the set up of the serial transmission between the DSM-51 nad mobile phone, configuration of the RS232 driver on the DSM-51 board and controlling the mobile phone using AT commands: 1) The first part depends on implementation of the serial transmission driver on the 8051 microcontroller (using assembler language) or configuring the existing RS232 driver on the DSM-51 kit [3]. Depending on the serial modem installed (v.24, v.23, etc.), what can be checked using the ATI7 command, the transmission speed shall be defined, for example as 300 bps (bits per second). Transmisson should be bidirectional (full duplex). One should also implement the interface for the serial driver, i.e. the incoming information should be displayed on the LCD. There could be also a possibility to retrieve the input data from the DSM-51 keyboard. PWT POZNAŃ 6-7 GRUDNIA /8

7 On the use of AT commands for controling the mobile phone with microcontroller 2) When the setup phase is finished, a connection test should be performed using the pure AT command. Then one may check the signal strength and BER (bit error ratio) using the AT+CSQ command and the battery status and charging status using the AT+CBC command. The response of the mobile phone should look similarly to the one presented in Fig. 2. Fig. 2. Mobile phone response for commands AT+CSQ and AT+CBC Fig. 3. The example of AT command for sending an SMS message in PDU mode and the result (received message) PWT POZNAŃ 6-7 GRUDNIA /8

8 Adrian Kliks, Paweł Sroka 3) To prepare the system for the SMS messaging exercise one should check the character encoding scheme used by the mobile phone, by sending command AT+CSCS?. 4) Finally, when the system is set up properly, one should send the SMS message using both available modes: the text mode and PDU mode. The message could consist of the first name and surname of the student. One also has to ensure that the message is encoded properly in the PDU mode. An example of sending SMS using AT commands and the result are shown in Fig CONCLUSIONS In this paper the proposal of the micorprocessors laboratory exercise has been presented. The proposed exercise gives the opportunity to familiarize student with mobile phone s features unavailable when using the Graphical User Interface (GUI). Also a detailed insight into SMS messaging scheme is given, including explanation of the two SMS modes and coding issues related to it. Moreover, students familiarize with assembler programming by implementation of the serial transmission driver. The given instructions have been tested using two mobile phones and DSM-51 microcontroller kit and turned out to be a very illustrative method of learning about the GSM technology. REFERENCES [1] ETSI TS v6.0.1, Digital cellular telecommunications system (Phase 2+); Universal Mobile Telecommunications System (UMTS); Use of Data Terminal Equipment Data Circuit terminating Equipment (DTE-DCE); Interface for Short Message Service (SMS) and Cell Broadcast Service (CBS) (3GPP TS version Release 6), ETSI, January [2] ETSI TS v6.8.0, Digital cellular telecommunications system (Phase 2+); Universal Mobile Telecommunications System (UMTS); AT command set for User Equipment (UE) (3GPP TS version Release 6), ETSI, March [3] Gałka P., Gałka P., Podstawy programowania mikrokontrolera 8051, PWN Warszawa, [4] Sony Ericsson, Sony Ericsson GPRS PC Card Modem GC75 AT-Commands Manual, [5] [6] [7] PWT POZNAŃ 6-7 GRUDNIA /8

SYNOPSIS PROJECT TITLE : GSM BASED E-NOTICE BOARD

SYNOPSIS PROJECT TITLE : GSM BASED E-NOTICE BOARD SYNOPSIS PROJECT TITLE : GSM BASED E-NOTICE BOARD OBJECTIVE: The main aim of this project will be to design a SMS driven automatic display board which can replace the currently used programmable electronic

More information

AT commands APLICATION NOTE

AT commands APLICATION NOTE AT commands APLICATION NOTE SYMBOLS USED Symbols used Danger important notice, which may have an influence on the user s safety or the function of the device. Attention notice on possible problems, which

More information

How to handle SMS messages

How to handle SMS messages How to handle SMS messages This section gives examples of the AT commands for sending and receiving SMS (Small Message Service) messages with the GM12. First we will discuss what an SMS is, and some details

More information

Mobile forensics. SMS (Short Message Service) EMS, MMS, CBS

Mobile forensics. SMS (Short Message Service) EMS, MMS, CBS Mobile forensics SMS (Short Message Service) EMS, MMS, CBS How the Mobiles Work The Route of a Mobile Phone Telephone Call, (or SMS or user data traffic) SIM card Radio access network Core network MS/UE

More information

Application Note. SIM7100_SMS_Application_Note_V

Application Note. SIM7100_SMS_Application_Note_V SIM7100 Application Note SMS 0 SIM7100_SMS_Application_Note_V0.01 2014-11-8 Document Title: SIM7100 SMS Application Note Version: 0.01 Date: 2015-02-10 Status: Document ID: Release SIM7100_SMS_Application_Note_V0.01

More information

Quick help quide to GSM PDU mode structure

Quick help quide to GSM PDU mode structure 1 (6) Quick help quide to GSM 07.05 PDU mode structure AT+CMGS Send Message Sends a message from the DTE to the network (SMS-SUBMIT): AT+CMGS=PDU The length of the actual

More information

Serial interface configuration. Syntax of the standard AT commands

Serial interface configuration. Syntax of the standard AT commands Serial interface configuration The serial interface on the ATEUS GSM Gateway has to be initialized as follows: 19200,8,N,1 (baud rate 19200, data bits: 8, parity: no, stop bit: 1) No automatic baud rate

More information

PROJECT REPORT ON ELECTION VOTING VIA SMS

PROJECT REPORT ON ELECTION VOTING VIA SMS PROJECT REPORT ON ELECTION VOTING VIA SMS BY ROHAN.S.GAVANKAR (0713085) RONAK.P.KAMDAR (0713087) SHASHANK.S.KATKAR (0713094) UNDER THE GUIDANCE OF Prof. SHARVARI. P.DESHMANE IN PARTIAL FULFILLMENT OF B.E.

More information

SCOPE. SMS Application notes

SCOPE. SMS Application notes Document Name: SMS Application notes Version: 01.02 Date: 2007-09-25 DocId: SMS APP_V01.02 Status: Release General Notes Simcom offers this information as a service to its customers, to support application

More information

3.5G AT Commands Manual v1.0

3.5G AT Commands Manual v1.0 3.5G AT s Manual v1.0 History Company was established on 15th of April 1998. Main residence is based in Vilnius. Company started with production of telecommunication devices. In 2001 company expanded its

More information

SMS Application notes AN_SMS_V1.01

SMS Application notes AN_SMS_V1.01 AN_SMS_V1.01 Document Title: SMS Application notes Version: 1.01 Date: 2006-09-25 Status: Document Control ID: Release AN_SMS_V1.01 General Notes Simcom offers this information as a service to its customers,

More information

SMS Application Note. Version 2.6

SMS Application Note. Version 2.6 SMS Application Note Version 2.6 Copyright Neoway Technology Co., Ltd 2017. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written

More information

3GPP TS V3.2.0 ( )

3GPP TS V3.2.0 ( ) TS 27.005 V3.2.0 (2002-06) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Terminals; Use of Data Terminal Equipment - Data Circuit terminating; Equipment (DTE

More information

MICROCONTROLLER BASED LPG GAS DETECTOR USING GSM MODULE

MICROCONTROLLER BASED LPG GAS DETECTOR USING GSM MODULE MICROCONTROLLER BASED LPG GAS DETECTOR USING GSM MODULE Ashish Sharma (B.Tech., EL Engg.) E-mail: ashishpreet2009@gmail.com : contactashish10@gmail.com ABSTRACT Ideal gas sensor is used to detect the presence

More information

GSM Enabled Embedded System for Energy Measurement & Billing

GSM Enabled Embedded System for Energy Measurement & Billing International Journal of Scientific & Engineering Research Volume 4, Issue 1, January-2013 1 GSM Enabled Embedded System for Energy Measurement & Billing Mrs. S.H. Shete Mr. V.A. Kulkarni Abstract- Before

More information

ETSI TS V4.1.0 ( )

ETSI TS V4.1.0 ( ) TS 127 005 V4.1.0 (2001-09) Technical Specification Digital cellular telecommunications system (Phase 2+) (GSM); Universal Mobile Telecommunications System (UMTS); Use of Data Terminal Equipment - Data

More information

Gemalto EHS6T-USB Terminal Starter Kit. Getting Started Guide

Gemalto EHS6T-USB Terminal Starter Kit. Getting Started Guide Gemalto EHS6T-USB Terminal Starter Kit Getting Started Guide EHS6T-USB Terminal Starter Kit Contents Image is for a Kit A version. Other versions with different antenna may be available. This manual is

More information

AT Command Interface Specification

AT Command Interface Specification V100R001 Issue 02 Date 2014-09-25 Copyright Huawei Technologies Co., Ltd. 2014. All rights reserved. No part of this manual may be reproduced or transmitted in any form or by any means without prior written

More information

AT Command Interface Specification

AT Command Interface Specification Issue 02 Date 2013-12-24 Huawei Technologies Co., Ltd. provides customers with comprehensive technical support and service. For any assistance, please contact our local office or company headquarters.

More information

USE OF GSM TECHNILOGY TO CONTROL THE SPEED OF STEPPER MOTOR

USE OF GSM TECHNILOGY TO CONTROL THE SPEED OF STEPPER MOTOR USE OF GSM TECHNILOGY TO CONTROL THE SPEED OF STEPPER MOTOR Srushti Chafle 1, S wati Bhandarkar 2 Department of Electrical Engineering, Datta meghe Institute of Engineering technology and research, Sawangi(Meghe),Wardha

More information

Hands-On Workshop. Introduction to AT Commands, Sending SMS & GPRS

Hands-On Workshop. Introduction to AT Commands, Sending SMS & GPRS Hands-On Workshop Introduction to AT Commands, Sending SMS & GPRS Towers of Power - Class 02 New York, April 5th 2014 Hardware Micro-controllers Lots of Options Cellphone Modules GSM Modems

More information

Cinterion BGS2T (RS232) Terminal Starter Kit. Getting Started Guide

Cinterion BGS2T (RS232) Terminal Starter Kit. Getting Started Guide Cinterion BGS2T (RS232) Terminal Starter Kit Getting Started Guide BGS2T (RS232) Terminal Starter Kit Contents PLEASE NOTE KIT CONTENTS MAY VARY ACCORDING TO ORIGIN AND THE INTENDED COUNTRY OF OPERATION

More information

GSM GSM TECHNICAL January 1998 SPECIFICATION Version 5.5.0

GSM GSM TECHNICAL January 1998 SPECIFICATION Version 5.5.0 GSM GSM 07.05 TECHNICAL January 1998 SPECIFICATION Version 5.5.0 Source: SMG Reference: RGTS/SMG-040705QR3 ICS: 33.020 Key words: Digital cellular telecommunications system, Global System for Mobile communications

More information

Application Note basic Voice and SMS Connection with SIM900 rev03

Application Note basic Voice and SMS Connection with SIM900 rev03 Connection with rev03 S MUST BE Connection with rev03 AT ATI ATE0 AT+GMR AT+GMI AT+GMM AT+GSN AT+CSCA? AT+CNUM? AT+CREG? AT+CSQ AT+GCAP AT+CMEE=2 AT&W AT&V AT&F AT+CPBS="ON" NETWORK CENTRE NUMBERS NETWORK

More information

Implementation of suggests GSM/GPRS system in governmental service departments Raad G. Hameed Al-Azawi.

Implementation of suggests GSM/GPRS system in governmental service departments Raad G. Hameed Al-Azawi. Journal of Babylon University/Pure and Applied Sciences/ No.(4)/ Vol.(22): 2014 Implementation of suggests GSM/GPRS system in governmental service departments Raad G. Hameed Al-Azawi. Abstract The research

More information

MARCH ISSN: INTERNATIONALJOURNALFORENGINEERINGAPPLICATIONSAND TECHNOLOGY GPS ENABLED EMERGENT TRACING AND NEAREST FACILITY AVAILANCE SYSTEM

MARCH ISSN: INTERNATIONALJOURNALFORENGINEERINGAPPLICATIONSAND TECHNOLOGY GPS ENABLED EMERGENT TRACING AND NEAREST FACILITY AVAILANCE SYSTEM IJFEAT INTERNATIONALJOURNALFORENGINEERINGAPPLICATIONSAND TECHNOLOGY GPS ENABLED EMERGENT TRACING AND NEAREST FACILITY AVAILANCE SYSTEM 1 Prof.A.N.Shire, Department of EXTC, J.D.I.E.T,Yavatmal, 2Ankita

More information

ETSI TS V7.0.1 ( )

ETSI TS V7.0.1 ( ) Technical Specification Digital cellular telecommunications system (Phase 2+); Use of Data Terminal Equipment - Data Circuit terminating; Equipment (DTE - DCE) interface for Short Message Service (SMS)

More information

AVR323: Interfacing GSM modems. 8-bit Microcontrollers. Application Note. Features. 1 Introduction

AVR323: Interfacing GSM modems. 8-bit Microcontrollers. Application Note. Features. 1 Introduction AVR323: Interfacing GSM modems Features Interface to GSM modems. Implementation of AT-Command set. PDU string compression and decompression. SMS transmission, how to send and receive. 1 Introduction The

More information

3GPP TS V ( )

3GPP TS V ( ) TS 11.10-4 V8.15.0 (2006-03) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Core Network and Terminals; Mobile Station (MS) conformance specification; Part 4:

More information

GSM GSM TECHNICAL July 1996 SPECIFICATION Version 5.0.0

GSM GSM TECHNICAL July 1996 SPECIFICATION Version 5.0.0 GSM GSM 07.05 TECHNICAL July 1996 SPECIFICATION Version 5.0.0 Source: ETSI TC-SMG Reference: TS/SMG-040705Q ICS: 33.060.50 Key words: Digital cellular telecommunications system, Global System for Mobile

More information

Manual Reference. AT Command Set (GSM 07.07, GSM 07.05) S25

Manual Reference. AT Command Set (GSM 07.07, GSM 07.05) S25 Manual Reference AT Command Set (GSM 07.07, GSM 07.05) for SIEMENS Mobile Phone S25 and Derivatives 17.08.99 page 1 of 31 All rights reserved. No part of this work covered by the copyrights hereof may

More information

SIM800C-DS_Application Note _V1.00

SIM800C-DS_Application Note _V1.00 SIM800C-DS_Application Note _V1.00 Document Title: SIM800C-DS Application Note Version: 1.00 Date: Status: Document Control ID: Release SIM800C-DS_Application Note_V1.00 General Notes SIMCom offers this

More information

AT Command Interface Specification

AT Command Interface Specification Issue 01 Date 2013-04-10 Huawei Technologies Co., Ltd. provides customers with comprehensive technical support and service. For any assistance, please contact our local office or company headquarters.

More information

Nokia F-Bus Protocol

Nokia F-Bus Protocol Nokia F-Bus Protocol Chapter - III NOKIA F-BUS PROTOCOL 3.1 INTRODUCTION TO NOKIA F-BUS Most Nokia phones have F-Bus and M-Bus connections that can be used to connect a phone to a PC or in our case a microcontroller.

More information

Institutions and Organizations today are facing several unique communication challenges:

Institutions and Organizations today are facing several unique communication challenges: CHAPTER 1 Introduction Institutions and Organizations today are facing several unique communication challenges: the proliferation of electronic messages across their enterprise; the need to provide employees,

More information

AT Command Addendum and Getting Started Guide for LAT1 Devices. Telit Firmware x3 Reference Guide.

AT Command Addendum and Getting Started Guide for LAT1 Devices. Telit Firmware x3 Reference Guide. AT Command Addendum and Getting Started Guide for LAT1 Devices Telit Firmware 17.00.5x3 Reference Guide www.multitech.com AT Command Addendum and Getting Started Guide for LAT1 Devices using Telit Firmware

More information

GSM FUNCTION APPLIED IN WIRELESS SOLUTION

GSM FUNCTION APPLIED IN WIRELESS SOLUTION Fujitsu Semiconductor Design (Chengdu) Co., Ltd. Application Note MCU-AN-500107-E-10 F²MC-8FX FAMILY 8-BIT MICROCONTROLLER MB95F370 SERIES GSM FUNCTION APPLIED IN WIRELESS SOLUTION APPLICATION NOTE Revision

More information

AT Command Interface Specification

AT Command Interface Specification Issue 02 Date 2013-06-18 Huawei Technologies Co., Ltd. provides customers with comprehensive technical support and service. For any assistance, please contact our local office or company headquarters.

More information

xxx xxx Project GSM/GPS Communication Module

xxx xxx Project GSM/GPS Communication Module Test Plan Identifier: xxx-communication Module *Module testing is according to xxx-project Proposal Appendix 9: Testing Restrictions/Scope table. References: Please refer to Appendix 1: References Introduction:

More information

ETSI TS V ( )

ETSI TS V ( ) TS 100 607-4 V8.15.0 (2006-03) Technical Specification Digital cellular telecommunications system (Phase 2+); Mobile Station (MS) conformance specification; Part 4: Subscriber Identity Module (SIM) application

More information

IMS Client Framework for All IP-Based Communication Networks

IMS Client Framework for All IP-Based Communication Networks IMS Client Framework for All IP-Based Communication Networks D. Jayaram, S. Vijay Anand, Vamshi Raghav, Prashanth Kumar, K. Riyaz & K. Kishan Larsen & Toubro InfoTech Limited Research and Development Group,

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction 1 1.1 NEED OF MOBILE DEVICE CONTROLLER The advances in the technologies related to wireless communication has led to the emergence of several engineering designs to aid the human

More information

Concealed Data in Two Way Text Messaging: A Framework for Interactive Mobile Learning Environment

Concealed Data in Two Way Text Messaging: A Framework for Interactive Mobile Learning Environment Concealed Data in Two Way Text Messaging: A Framework for Interactive Mobile Learning Environment H K Salinda Premadasa Sabaragamuwa University of Sri Lanka Introduction Short Messaging Service (SMS) is

More information

ETSI TS V ( )

ETSI TS V ( ) TS 144 012 V14.0.0 (2017-04) TECHNICAL SPECIFICATION Digital cellular telecommunications system (Phase 2+) (GSM); Short Message Service Cell Broadcast (SMSCB) support on the mobile radio interface (3GPP

More information

Transmitting GPS position by an Iridium phone

Transmitting GPS position by an Iridium phone Transmitting GPS position by an Iridium phone F. SIGERNES AND JEFF HOLMES University Centre in Svalbard (UNIS), Box 156, N 9170 Longyearbyen, Norway Abstract This document describes how to send GPS information

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

GTM-201 Series FAQ Ver1.1. GTM-201 Series FAQ ICP DAS CO., LTD.

GTM-201 Series FAQ Ver1.1. GTM-201 Series FAQ ICP DAS CO., LTD. GTM-201 Series FAQ 1 Tables of Content GTM-201 Series FAQ Ver1.1 Q01: What is the PIN code?...3 Q02: What are the GTM-201-RS232 and GTM-201-USB default baud rate?...3 Q03: What kind of information do you

More information

Arm11 Based Accident Alert and Vehicle Tracking Using GSM and GPS

Arm11 Based Accident Alert and Vehicle Tracking Using GSM and GPS Arm11 Based Accident Alert and Vehicle Tracking Using GSM and GPS Ehtesam Zaki M.Tech Student, Dept of ECE, VIF College Of Engineering and Technology. ABSTRACT: Traffic accidents are one of the leading

More information

DANGER indicates that death or severe personal injury will result if proper precautions are not taken.

DANGER indicates that death or severe personal injury will result if proper precautions are not taken. Preface Application and properties 1 SIMATIC NET Industrial Remote Communication - TeleControl Operating Instructions Installation and connecting up 2 Configuration 3 SINAUT MICRO program block libraries

More information

H20 AT Command User Guide

H20 AT Command User Guide H20 AT User Guide Version: 1.0.8 Date: 2008/12/24 Author: Cariel Huang 2008 Qisda Inc. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

More information

3GPP TS V6.1.0 ( )

3GPP TS V6.1.0 ( ) TS 23.038 V6.1.0 (2004-09) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Terminals; Alphabets and language-specific information (Release 6) GLOBAL SYSTEM FOR

More information

3GPP TS V ( )

3GPP TS V ( ) TS 23.042 V11.0.0 (2012-09) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Core Network and Terminals; Compression algorithm for text messaging services (Release

More information

E-Blocks Mobile Communications Bundle

E-Blocks Mobile Communications Bundle Page 1 Communications Bundle Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before

More information

GPRS-T1. Monitoring Converter. SATEL sp. z o.o. ul. Schuberta Gdańsk POLAND tel

GPRS-T1. Monitoring Converter. SATEL sp. z o.o. ul. Schuberta Gdańsk POLAND tel Monitoring Converter GPRS-T1 Program version 1.01 gprs-t1_en 04/09 SATEL sp. z o.o. ul. Schuberta 79 80-172 Gdańsk POLAND tel. + 48 58 320 94 00 info@satel.pl www.satel.pl WARNINGS The module should only

More information

GPRS /GSM SIM900A MODEM

GPRS /GSM SIM900A MODEM GPRS /GSM SIM900A MODEM USER MANUAL www.researchdesignlab.com Page 1 Contents Overview... 4 GSM GPRS SIM900A Modem... 4 Features... 5 Datasheets... 5 GSM Utility Software... 6 Basic AT Commands for Testing...

More information

u-blox TOBY-L1 and MPCI-L1

u-blox TOBY-L1 and MPCI-L1 u-blox TOBY-L1 and MPCI-L1 LTE Cellular Modules AT Commands Manual Abstract Description of standard and proprietary AT Commands used with u-blox TOBY-L1 and MPCI-L1 LTE cellular modules. TOBY-L1 series

More information

IMPLEMENTATION OF AAA SERVER LABORATORY MODEL

IMPLEMENTATION OF AAA SERVER LABORATORY MODEL 2007 Poznańskie Warsztaty Telekomunikacyjne Poznań 6-7 grudnia 2007 POZNAN POZNAN UNIVERSITY UNIVERSITYOF OF TECHNOLOGY ACADEMIC ACADEMIC JOURNALS JOURNALS N O SERIA 2007 Sylwester Kaczmarek*, Urszula

More information

GSM GSM TECHNICAL March 1996 SPECIFICATION Version 5.1.0

GSM GSM TECHNICAL March 1996 SPECIFICATION Version 5.1.0 GSM GSM 03.38 TECHNICAL March 1996 SPECIFICATION Version 5.1.0 Source: ETSI TC-SMG Reference: TS/SMG-040338QR ICS: 33.060.50 Key words: Digital cellular telecommunications system, Global System for Mobile

More information

GMM-SM Event Logging. Feature Description. Feature Overview. Events to be Logged

GMM-SM Event Logging. Feature Description. Feature Overview. Events to be Logged With the introduction of this feature, the SGSN now supports limited use of event data records (EDRs). This chapters details the SGSN's event logging feature, with the use of EDRs, which is intended to

More information

NOKIA 12 GSM MODULE AT COMMAND GUIDE

NOKIA 12 GSM MODULE AT COMMAND GUIDE NOKIA 12 GSM MODULE AT COMMAND GUIDE Copyright 2003-2004 Nokia. All rights reserved. Issue 1.3 9231229 Contents ACRONYMS AND TERMS...1 1. ABOUT THIS DOCUMENT...3 2. INTRODUCTION...4 3. PRODUCT SUPPORT...5

More information

I lllll llllllll II llllll lllll lllll lllll lllll lllll lllll lllll

I lllll llllllll II llllll lllll lllll lllll lllll lllll lllll lllll (19) United States (12) Patent Application Publication Requena et al. I lllll llllllll II llllll lllll lllll lllll lllll lllll lllll lllll 111111111111111111111111111111111 US 20020181495Al (10) Pub. No.:

More information

ITU-T Q Signalling architecture and requirements for IP-based short message service over ITU-T defined NGN

ITU-T Q Signalling architecture and requirements for IP-based short message service over ITU-T defined NGN I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T Q.3053 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU (03/2017) SERIES Q: SWITCHING AND SIGNALLING, AND ASSOCIATED MEASUREMENTS

More information

GGB-1916 GNSS/2.5G GSM/GPRS/Bluetooth Module AT Commands Manual 2016 LOCOSYS Technology Inc.

GGB-1916 GNSS/2.5G GSM/GPRS/Bluetooth Module AT Commands Manual 2016 LOCOSYS Technology Inc. www.locosystech.com GGB-1916 GNSS/2.5G GSM/GPRS/Bluetooth Module AT Commands Manual 2016 LOCOSYS Technology Inc. Document history Version Date Updates 0.1 Aug 5, 2016 Creation 0.2 Oct 21, 2016 Modify some

More information

SIMATIC NET. Industrial Remote Communication - TeleControl MODEM MD720. Preface. Application and functions 1. Installation and connecting up 2

SIMATIC NET. Industrial Remote Communication - TeleControl MODEM MD720. Preface. Application and functions 1. Installation and connecting up 2 Preface Application and functions 1 SIMATIC NET Industrial Remote Communication - TeleControl Operating Instructions Installation and connecting up 2 Configuration 3 Program block libraries SINAUT MICRO

More information

GMM-SM Event Logging. Feature Description. Feature Overview. Events to be Logged

GMM-SM Event Logging. Feature Description. Feature Overview. Events to be Logged With the introduction of this feature, the SGSN now supports limited use of event data records (EDRs). This chapters details the SGSN's event logging feature, with the use of EDRs, which is intended to

More information

ETSI EN V7.0.2 ( )

ETSI EN V7.0.2 ( ) EN 300 904 V7.0.2 (1999-12) European Standard (Telecommunications series) Digital cellular telecommunications system (Phase 2+); Bearer Services (BS) supported by a GSM Public Land Mobile Network (PLMN)

More information

CHANGE REQUEST. Ericsson, Siemens AG, Lucent Technologies

CHANGE REQUEST. Ericsson, Siemens AG, Lucent Technologies 3GPP TSG-CN Meeting #25 Palm Springs, USA. 8 th to 10 th September 2004. NP-040310 CHANGE REQUEST CR-Form-v7.1 24.008 CR 882 rev 3 Current version: 6.5.0 For HELP on using this form, see bottom of this

More information

ETSI TS V4.2.0 ( )

ETSI TS V4.2.0 ( ) TS 123 040 V4.2.0 (2001-03) Technical Specification Universal Mobile Telecommunications System (UMTS); Technical realization of the Short Message Service (SMS) (3GPP TS 23.040 version 4.2.0 Release 4)

More information

Design and Development of Software Coding for m- Advertisement Using VB6

Design and Development of Software Coding for m- Advertisement Using VB6 Abstract: 76 Design and Development of Software Coding for m- Advertisement Using VB6 Physics Department, H.N.G.University, Patan, Gujarat, INDIA Mobile phone has become essential in our life. Almost all

More information

Procedia Computer Science

Procedia Computer Science Procedia Computer Science 3 (2011) 949 953 Procedia Computer Science 00 (2010) 000 000 Procedia Computer Science www.elsevier.com/locate/procedia www.elsevier.com/locate/procedia WCIT 2010 An Implementation

More information

Development KIT for TM2 GPRS modem User manual 1.2. Development KIT. Development KIT for TM2 GSM/GPRS modem User s manual 1.2

Development KIT for TM2 GPRS modem User manual 1.2. Development KIT. Development KIT for TM2 GSM/GPRS modem User s manual 1.2 Development KIT Development KIT for TM2 GSM/GPRS modem User s manual 1.2 1 Contents Attention!... 3 1. Basic Safety Requirements... 4 2. General Information... 5 2.1 Introduction... 5 2.2 About this document...

More information

ETSI TS V5.2.0 ( )

ETSI TS V5.2.0 ( ) TS 131 112 V5.2.0 (2002-06) Technical Specification Universal Mobile Telecommunications System (UMTS); USAT Interpreter Architecture Description; Stage 2 (3GPP TS 31.112 version 5.2.0 Release 5) 1 TS 131

More information

User Manual. Configuration OWL LTE (Industrial Cellular Router) UM Configuration OWL LTE Release 1.0 Rev /2016

User Manual. Configuration OWL LTE (Industrial Cellular Router) UM Configuration OWL LTE Release 1.0 Rev /2016 User Manual Configuration OWL LTE (Industrial Cellular Router) Technical Support https://hirschmann-support.belden.eu.com The naming of copyrighted trademarks in this manual, even when not specially indicated,

More information

Telit Modules Software User Guide. 1vv rev

Telit Modules Software User Guide. 1vv rev Telit Modules Software User Guide This document is related to the following Telit Modules: PRODUCT GM862-QUAD GM862-QUAD-PY GM862-GPS GC864-QUAD GC864-PY GC864-QUAD w/sim holder GC864-PY w/sim holder GE863-PRO3

More information

AT Commands Over SMS. Application Note ENF0000AN012. Version:2.00

AT Commands Over SMS. Application Note ENF0000AN012. Version:2.00 AT Commands Over SMS Application Note ENF0000AN012 Version:2.00 03 January, 2012 General TERMS OF USE OF NEW MATERIALS - PLEASE READ CAREFULLY From time to time, Enfora, in its sole discretion, may make

More information

TS V6.1.0 ( )

TS V6.1.0 ( ) Technical Specification Digital cellular telecommunications system (Phase 2+); Technical realization of the Short Message Service (SMS); Point-to-Point (PP) (GSM 03.40 version 6.1.0 Release 1997) GLOBAL

More information

Telit Modules Software User Guide. 1vv rev

Telit Modules Software User Guide. 1vv rev Telit Modules Software User Guide This document is related to the following Telit Modules: PRODUCT GM862-QUAD GM862-QUAD-PY GM862-GPS GC864-QUAD GC864-PY GC864-DUAL GC864-QUAD GC864-QUAD w/sim holder GC864-PY

More information

MM-6854 / MM-6864 GSM Dual-Band Data Modem

MM-6854 / MM-6864 GSM Dual-Band Data Modem MM-6854 / MM-6864 GSM Dual-Band Data Modem MM-6854 MM-6864 Application Notes For more information or general enquiries, please call; R. F. Solutions Ltd., Unit 21, Cliffe Industrial Estate, South Street,

More information

V1.0. Ai-Thinker Inc. Ai-Thinker

V1.0. Ai-Thinker Inc. Ai-Thinker GPRS AT V1.0 GPRS AT V1.0 Inc Copyright (c) 2017 GPRS AT V1.0 GPRS AT URL 2017.12.30 V1.0 Ai Thinker 1 130 GPRS AT V1.0... 7 1.1 AT... 7 1.2 AT... 7 1.2.1 AT... 7... 9 2.1 AT... 9 2.2 AT&W... 9 2.3 AT&FTA...

More information

Mobile telephony solution. Copyright 2006 Matrix Multimedia Limited

Mobile telephony solution. Copyright 2006 Matrix Multimedia Limited Mobile telephony solution Copyright 2006 Matrix Multimedia Limited 1 About this presentation This presentation was developed by John Dobson Managing Director of Matrix Multimedia Limited. PowerPoint versions

More information

Developing for Cellular Networks

Developing for Cellular Networks Developing for Cellular Networks Amanda Ervin Radical Networks Conference Brooklyn, NY 11/4-6 2016 ervin.amanda@gmail.com @threadandmotors amandaervin.com About Me Artist/Developer/Maker Wearable Devices/

More information

GTM-204M FAQ Ver1.0 GTM-204M FAQ

GTM-204M FAQ Ver1.0 GTM-204M FAQ GTM-204M FAQ 1 Content Q01:How to use AT Command to send SMS in Text mode?... 3 Q02:In PDU mode, how to use AT Command to send Chinese SMS?... 3 Q03:SMS seems to be unable to store, how to set?... 3 Q04:Demo

More information

GSM BASED SMART NOTICE BOARD

GSM BASED SMART NOTICE BOARD GSM BASED SMART NOTICE BOARD 1 Mrs.A.Priya AP/CSE, 2 M.I.Ayeshasulthana, 3 S.Baranipriya,4 E.Dhamotharan,5 S.Shruthi Sasurie College Of Engineering,Vijayamangalam Email: priyameest@gmail.com, ayeshasulthana.m.i@gmail.com,

More information

GSM V7.0.0 ( )

GSM V7.0.0 ( ) Technical Specification Digital cellular telecommunications system (Phase 2+); Alphabets and language-specific information (GSM 03.38 version 7.0.0 Release 1998) SMG version only, not for publication GLOBAL

More information

Analysis of a Multiple Content Variant Extension of the Multimedia Broadcast/Multicast Service

Analysis of a Multiple Content Variant Extension of the Multimedia Broadcast/Multicast Service PUBLISHED IN: PROCEEDINGS OF THE EUROPEAN WIRELESS 2006 CONFERENCE 1 Analysis of a Multiple Content Variant Extension of the Multimedia Broadcast/Multicast Service George Xylomenos, Konstantinos Katsaros

More information

MultiModem GPRS USB. Wireless Modem. User Guide MTCBA-G-U

MultiModem GPRS USB. Wireless Modem. User Guide MTCBA-G-U MultiModem GPRS USB Wireless Modem MTCBA-G-U User Guide Copyright and Technical Support MultiModem GPRS USB External Wireless Modem User Guide Model MTCBA-G-U S000346I, Revision I Copyright This publication

More information

Lecture overview. Modifications and derivatives of GSM Data transmission in GSM: HSCSD GPRS part one EDGE

Lecture overview. Modifications and derivatives of GSM Data transmission in GSM: HSCSD GPRS part one EDGE Lecture overview Modifications and derivatives of GSM Data transmission in GSM: HSCSD GPRS part one EDGE Modifications and derivatives of GSM Introduction of half-rate speech coding (BR 6.5 kb/s) Two users

More information

LTE GLOBAL PHONE Version: 0.1 Apr. 2016

LTE GLOBAL PHONE Version: 0.1 Apr. 2016 LTE GLOBAL PHONE Version: 0.1 Apr. 2016 1 LTE/TD-SCDMA/WCDMA/CDMA/GSM Global Phone WHITE PAPER Version: Draft Version 0.1 Deliverable Type Procedural Document Working Document Confidential Level Open to

More information

USING SatTerm SOFTWARE WITH SMS APPLICATION NOTE

USING SatTerm SOFTWARE WITH SMS APPLICATION NOTE AN2007-06-V3.4.0 USING SatTerm SOFTWARE WITH SMS APPLICATION NOTE February 20, 2007 Copyright 2007 by NAL Research Corporation The specifications in this document are subject to change at NAL Research

More information

TS-3GA (Rel6)v6.0.0 GSM - UMTS Public Land Mobile Network (PLMN) Access Reference Configuration

TS-3GA (Rel6)v6.0.0 GSM - UMTS Public Land Mobile Network (PLMN) Access Reference Configuration TS-3GA-24.002(Rel6)v6.0.0 GSM - UMTS Public Land Mobile Network (PLMN) Access Reference Configuration Mar 4,2005 THE TELECOMMUNICATION TECHNOLOGY COMMITTEE TS-3GA-24.002(Rel6)v6.0.0 GSM - UMTS Public Land

More information

THE DESIGN AND REALIZATION OF EMBEDDED WIRELESS DATA COLLECTION SYSTEM

THE DESIGN AND REALIZATION OF EMBEDDED WIRELESS DATA COLLECTION SYSTEM THE DESIGN AND REALIZATION OF EMBEDDED WIRELESS DATA COLLECTION SYSTEM Junfeng Zhang 1, Feng Yu 1, Jichun Zhao 1,*, Sufen Sun 1 1 Institute of Information on Science and Technology of Agriculture, Beijing

More information

3GPP TS V8.2.0 ( )

3GPP TS V8.2.0 ( ) TS 29.311 V8.2.0 (2011-09) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Core Network and Terminals; Service Level Interworking (SLI) for Messaging Services

More information

User Manual for VE GSM Modem

User Manual for VE GSM Modem User Manual for VE GSM Modem INTRODUCTION GSM/GPRS Smart Modem is a multi-functional, ready to use, rugged unit that can be embedded or plugged into any application. The Smart Modem can be controlled and

More information

3GPP TS V8.3.0 ( )

3GPP TS V8.3.0 ( ) TS 29.282 V8.3.0 (2012-09) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Core Network and Terminals; Mobile IPv6 vendor specific option format and usage within

More information

ETSI TS V4.0.0 ( )

ETSI TS V4.0.0 ( ) TS 122 090 V4.0.0 (2001-03) Technical Specification Digital cellular telecommunications system (Phase 2+) (GSM); Universal Mobile Telecommunications System (UMTS); Unstructured Supplementary Service Data

More information

Design of Fault Tolerant Automated Energy Metering System using GSM/GPRS Modems

Design of Fault Tolerant Automated Energy Metering System using GSM/GPRS Modems Indian Journal of Science and Technology, Vol 8(S9), 484 488, May 2015 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 DOI: 10.17485/ijst/2015/v8iS9/64497 Design of Fault Tolerant Automated Energy Metering

More information

GSM GSM TECHNICAL December 1995 SPECIFICATION Version 5.0.0

GSM GSM TECHNICAL December 1995 SPECIFICATION Version 5.0.0 GSM GSM 02.02 TECHNICAL December 1995 SPECIFICATION Version 5.0.0 Source: ETSI TC-SMG Reference: TS/SMG-010202Q ICS: 33.060.50 Key words: Digital cellular telecommunications system, Global System for Mobile

More information

User Module. AT Modem Emulator APPLICATION NOTE

User Module. AT Modem Emulator APPLICATION NOTE User Module AT Modem Emulator APPLICATION NOTE USED SYMBOLS Used symbols Danger important notice, which may have an influence on the user s safety or the function of the device. Attention notice on possible

More information

ETSI TS V ( )

ETSI TS V ( ) Technical Specification Universal Mobile Telecommunications System (UMTS); LTE; Mobile IPv6 vendor specific option format and usage within 3GPP () 1 Reference RTS/TSGC-0429282va20 Keywords LTE,UMTS 650

More information