Part Number Weblink for the part Description Unit Price. Hardware interfacing to the Freescale 9S12C32 MCU on board the CSM-12C32 module

Size: px
Start display at page:

Download "Part Number Weblink for the part Description Unit Price. Hardware interfacing to the Freescale 9S12C32 MCU on board the CSM-12C32 module"

Transcription

1 Global Positioning System Modules This section shows how to connect a GPS module to the CSM-12C32 module and provide several C functions for capturing the latitude, longitude, and UTC time information. There is other information such as the number of satellites that can be captured in the same way but is not covered in this section. An easy-to-use GPS module is Vincotech 340-V EVA1080A51GPS module, which consists of one GPS module and one GPS antenna on a coaxial cable. The on-board firmware supports bi-directional serial interface by using a full duplex UART (Universal Asynchronous Receiver Transmitter) interface of the GPS processor. The default configuration of this serial port is: 4800 baud, 8 data bits, no parity, 1 stop bit, no flow control. A level shifter is needed for passing the data to a PC through a serial COM port. Pictures, ordering information and web link for the module are shown below. Vendor Part Number Weblink for the part Description Unit Price Mouser Electronic s 340- V EVA1080- A EVA1080-A Evaluation kit for Vincotech A1080-A GPS module $ Hardware interfacing to the Freescale 9S12C32 MCU on board the CSM-12C32 module If the CSM-12C32 module is powered at 5 V, the wiring diagram is shown below. If the CSM- 12C32 module is powered at 3.3 V, the voltage divider can be removed and the TXD of the microcontroller goes straight to the RX0 of the GPS module terminal block.

2 Software development The GPS module supports the NMEA inter-face. The description of the outputs coming from this interface and a summary of the commands that can be issued to this interface are discussed below. This will allow a programmer to fully control of the module. The outputs coming from the interface are in the form of NMEA sentences, which are in the NMEA 0183 Standard. These sentences were developed by the National Marine Electronics Association for digital data exchange among marine electronic products back in the early nineteen-eighties. Each sentence transmitted by a marine electronic product is in the form of $<vendor><message><parameters>*<checksum><cr><lf> The maximum length of a sentence is 80 characters. The combination of <vendor><message> is called address field. The vendor code for the Global Positioning System is GP. The Vincotech s GPS firmware for the GPS module supports six NMEA sentences. Each sentence can be individually turned off or on. $GPGGA (default: ON) $GPVTG (default: OFF) $GPRMC (default: ON) $GPGSA (default: ON) $GPGSV (default: ON, 0.2Hz) $GPGLL (default: OFF)

3 Commands can be sent to the GPS module to turn an NMEA sentence on or off. The two tables below contain the inputs. For example, to disable the GGA message, the command is $PSRF103,00,00,00,01*21 To enable the GGA message for a 1 Hz constant output with checksum enabled, the command is $PSRF103,00,00,01,01*20 A C function for initializing the SCI of the 9S12C32 for communicating with the GPS module is shown below. void init_sci(void){ SCIBDH=0x00; // BR = Bus Clock/(16 * Baud Rate) SCIBDL=104; // Baud Rate set to 4800 SCICR1=0x04; //normal 8 bit mode, no parity SCICR2=0x0C; //enable tx and rx, disable interrupts To capture the latitude, longitude and UTC time from the GPS module, can use the GPGGA sentence and the format of which is shown in the next table.

4 GPGGA - Global Positioning System Fix Data Sentence Format: e.g. $GPGGA, , ,N, ,E,1,04,2.5,607.5,M,47.6,M,,*67 (1) $GPGGA Vendor and message identifier (2) Universal time coordinated (15h 21m s) (3) Latitude (48deg min) (4) N N North S South (5) Longitude (011deg min) (6) E E East W West (7) 1 Fix quality: 0 fix not valid or invalid, 1 GPS SPS mode, fix valid, 2 Differential GPS, SPS mode, fix valid (8) 04 Four satellites in use (min 00, max 12) (9) 2.5 Horizontal dilution of precision (10) MSL altitude (11) M Unit of antenna altitude: meters (12) 47.6 Geoidal separation (13) M Unit of geoidal separation: meters (14) <empty> Age of differential GPS data, null field when DGPS is not used (15) <empty> Differential reference station ID, null field when DGPS is not used (16) *67 Checksum A C function for capturing the latitude, longitude and UTC time from the GPS module is shown below. Every time this function is called, it will start the measurement and capture the information in global strings. The UTC time is stored in the global string UTC. The latitude is stored in the global string Latitude. The latitude direction (N or S) is stored in the global character Lat_direction. The longitude is stored in the global string Longitude. The longtitude direction (E or W) is stored in the global character Long_direction. void GPS_data(void){ int i; char GPGGA[80] = {0; char GPGGA_Off[25] = {"$PSRF103,00,00,00,01*24"; /*turn off GGA sentence*/ char GPRMC_Off[25] = {"$PSRF103,04,00,00,01*20"; /*turn off RMC */ char GPGSA_Off[25] = {"$PSRF103,02,00,00,01*26"; /*turn off GSA */ char GPSV_Off[25] = {"$PSRF103,03,00,00,01*27"; /*turn off GSV */ char GPGGA_On[25] = {"$PSRF103,00,00,01,01*25"; /*turn on GGA */ char end_sentence[3] = {0x0D,0x0A, 0x00; /*end of sentence <CR> <LF><NULL>*/ putstring(gpgga_off); // turn off GGA sentence putstring(gprmc_off); //turn off RMC sentence

5 putstring(gpgsa_off); //turn off GSA sentence putstring(gpgsv_off); //turn off GSV sentence putstring(gpgga_on); // turn on GGA sentence getstring(gpgga,80); /*saves GPGGA statement*/ for (i=7; i<=16; i++) UTC[i-7]=GPGGA[i]; for (i=18; i<=26; i++) Latitude[i-18]=GPGGA[i]; Lat_direction=GPGGA[28]; for (i=30; i<=39; i++) Longitude[i-30]=GPGGA[i]; Long_direction=GPGGA[41]; char getchar(void) { while (!(SCISR1 & 0x20)); return SCIDRL; void getstring(char *stringptr, int string_length){ int i=0; stringptr[0]=getchar(); while((stringptr[i]!= 0x0D) && (i < string_length)){ i++; stringptr[i]=getchar(); void putchar(char a){ while(!(scisr1 & 0x80)); SCIDRL = a; void putstring(char *stringptr){ while((*stringptr!= 0x00)) putchar(*stringptr++);

Reference Designs for Embedded Controls

Reference Designs for Embedded Controls Reference Designs for Embedded Controls Chiu H. Choi University of North Florida, cchoi@unf.edu Abstract - A set of reference designs suitable for our student design projects was developed and tested.

More information

GPS Firmware A1080 A description of the standard NMEA GPS firmware provided on Tyco Electronics GPS module A1080 User s Manual Version 3.

GPS Firmware A1080 A description of the standard NMEA GPS firmware provided on Tyco Electronics GPS module A1080 User s Manual Version 3. GPS Firmware A description of the standard NMEA GPS firmware provided on Tyco Electronics GPS module User s Manual Version 3.0 This page was intentionally left blank. Revision History Revision History

More information

GPS Firmware GSC3-based Products

GPS Firmware GSC3-based Products GPS Firmware GSC3-based Products A Description of the standard NMEA GPS firmware provided on Vincotech s GPS modules based on SiRFstarIII GSC3 A1080, A1084, A1088, A1035-D, A1035-H User s Manual Version

More information

GPS-41MLR GPS-41MLF. GPS Receiver Module GPS-41ML. Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module FEATURES. Ordering Information

GPS-41MLR GPS-41MLF. GPS Receiver Module GPS-41ML. Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module FEATURES. Ordering Information GPS-41ML Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module FEATURES 12 parallel channel GPS receiver 4100 simultaneous time-frequency search bins SBAS (WAAS, EGNOS) support High Sensitivity:

More information

GPS-41EBR GPS-41EBF. GPS Receiver Module GPS-41EB. Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module FEATURES. Ordering Information

GPS-41EBR GPS-41EBF. GPS Receiver Module GPS-41EB. Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module FEATURES. Ordering Information FEATURES 12 parallel channel GPS receiver 4000 simultaneous time-frequency search bins SBAS (WAAS, EGNOS) support High Sensitivity: -140dBm acquisition sensitivity -150dBm tracking sensitivity Fast Acquisition:

More information

GPS Receiver. UT-41R (DB9 and PS2 cable) Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Receiver. Features

GPS Receiver. UT-41R (DB9 and PS2 cable) Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Receiver. Features GPS Receiver Features 12 parallel channel GPS receiver 4100 simultaneous time-frequency search bins SBAS (WAAS, EGNOS) support -140dBm acquisition sensitivity -150dBm tracking sensitivity < 10 second hot

More information

NMEA-0183 Output Message

NMEA-0183 Output Message NMEA-0183 Output Message Option GGA GLL GSA GSV MSS RMC VTG Description Time, position and fix type data. Latitude, longitude, UTC time of position fix and status. GPS Receiver operating mode, satellites

More information

Key Modules For Your Success. ANTARIS 4 SuperSense. GPS Module. User s Manual Ver 展得國際有限公司

Key Modules For Your Success. ANTARIS 4 SuperSense. GPS Module. User s Manual Ver 展得國際有限公司 ANTARIS 4 SuperSense GPS Module User s Manual Ver 1.01 Item Date New Release Information In Charge 1 2006/06/06 New released. Harry Lee 2 Contents 1. INTRODUCTION... 4 1.1 OVERVIEW. 4 1.2 MAIN FEATURES...

More information

SKYTRAQ. GPS Module MG-ST1315S. UUser s Manual Ver 1.01

SKYTRAQ. GPS Module MG-ST1315S. UUser s Manual Ver 1.01 SKYTRAQ GPS Module MG-ST1315S UUser s Manual Ver 1.01 1. IntroductionT Overview Modulestek GPS module MG-ST1315S is a high sensitivity, low power consumption; compact size GPS module designed for a broad

More information

GPS-41SMDR GPS-41SMDF. Embedded GPS Module GPS-41SMD. Fast-Acquisition Enhanced-Sensitivity 16-Channel SMD GPS Receiver Module FEATURES

GPS-41SMDR GPS-41SMDF. Embedded GPS Module GPS-41SMD. Fast-Acquisition Enhanced-Sensitivity 16-Channel SMD GPS Receiver Module FEATURES GPS-41SMD Fast-Acquisition Enhanced-Sensitivity 16-Channel SMD GPS Receiver Module FEATURES 16 parallel channel GPS receiver 4100+ correlators SBAS (WAAS, EGNOS) support Supports active and passive antenna

More information

32-channel GPS Engine Board SmartAntenna

32-channel GPS Engine Board SmartAntenna 32-channel GPS Engine Board SmartAntenna with MTK Chipset The document is the exclusive property of and should not be distributed, reproduced, or any other format without prior permission of Specifications

More information

EM-406 GPS RECEIVER ENGINE BOARD PRODUCT GUIDE

EM-406 GPS RECEIVER ENGINE BOARD PRODUCT GUIDE EM-406 GPS RECEIVER ENGINE BOARD PRODUCT GUIDE GlobalSat Technology Corporation 16, No.186,Chien 1 Road, 235Chung Ho City,Taipei Hsien, Taiwan,R.O.C. www.globalsat.com.tw USGlobalSat, Inc. (USA Sales)

More information

Datasheet of stand-alone GPS smart antenna module, LS20037

Datasheet of stand-alone GPS smart antenna module, LS20037 Product name Description Version LS20037 Stand-alone GPS smart antenna module/mtk,9600bps 0.9 (Preliminary) Datasheet of stand-alone GPS smart antenna module, LS20037 1 Introduction LS20037 is a complete

More information

66-Channel GPS Module GP-3711

66-Channel GPS Module GP-3711 66-Channel GPS Module with MTK Chipset GP-3711 Low power consumption version 1 History Date Rev. Description 2013/12/31 A00 First Release 2 Description The GP-3711 is a ROM-based mini GPS module which

More information

EM-401. GPS ENGINE BOARD with Active Antenna PRODUCT GUIDE. Globalsat Technology Corporation (Taiwan)

EM-401. GPS ENGINE BOARD with Active Antenna PRODUCT GUIDE. Globalsat Technology Corporation (Taiwan) EM-401 GPS ENGINE BOARD with Active Antenna PRODUCT GUIDE Globalsat Technology Corporation (Taiwan) www.globalsat.com.tw USGlobalSat, Inc. (USA) www.usglobalsat.com Page 1 of 1 EM-401 GPS BOARD with Active

More information

GMS6-CR6(SIRF-IV) Fast Acquisition Enhanced Sensitivity 48 Channel GPS Sensor Module

GMS6-CR6(SIRF-IV) Fast Acquisition Enhanced Sensitivity 48 Channel GPS Sensor Module GMS6-CR6(SIRF-IV) Fast Acquisition Enhanced Sensitivity 48 Channel GPS Sensor Module The GMS6-CR6 is a compact all-in-one GPS module solution intended for a broad range of Original Equipment Manufacturer

More information

GT-720F (Flash version) Fast Acquisition Enhanced Sensitivity 65 Channel GPS Sensor Module

GT-720F (Flash version) Fast Acquisition Enhanced Sensitivity 65 Channel GPS Sensor Module GT-720F (Flash version) Fast Acquisition Enhanced Sensitivity 65 Channel GPS Sensor Module The GT-720F is a compact all-in-one GPS module solution intended for a broad range of Original Equipment Manufacturer

More information

GPS SMART ANTENNA (GWG4287SX)

GPS SMART ANTENNA (GWG4287SX) GPS SMART ANTENNA (GWG4287SX) SiRFSTARIII /LPx Specifications are subject to change without notice KOREA ELECTRIC TERMINAL CO., LTD. All right reserved http://www.ket.com 1. Introduction 1.1 Over view

More information

SkyNav GM10 GPS Receiver Module

SkyNav GM10 GPS Receiver Module Simplify The Complexity SkyNav GM10 GPS Receiver Module Datasheet Skylab M&C Technology Co., Ltd Room.801, Building.211, Terra Industrial Park, Futian District, Shenzhen, China Tel: (86) 755-83408280 Fax:

More information

PB100 WeatherStation Technical Manual

PB100 WeatherStation Technical Manual PB100 WeatherStation Technical Manual also covers model LB100 Revision 1.009 AIRMAR Technology Corporation 35 Meadowbrook Drive Milford, NH 03055-4613 (603) 673-9570 1. Introduction This document is a

More information

C3-470B Jnavi SPECSHEET

C3-470B Jnavi SPECSHEET HighPerformance GPS Receiver C3-470B Jnavi SPECSHEET MODEL NAME GR C3-470B - XXXX - T - P CODE NO. CUSTOMER MODEL NAME C3-470B INVESTIGATION INSPECTION APPROVAL 1/19 HighPerformance GPS Receiver Contents

More information

Key Modules For Your Success SKYTRAQ. GPS Module MG-ST1315. UUser s Manual Ver 展得國際有限公司

Key Modules For Your Success SKYTRAQ. GPS Module MG-ST1315. UUser s Manual Ver 展得國際有限公司 SKYTRAQ GPS Module MG-ST1315 UUser s Manual Ver 1.01 1. IntroductionT 1.1 Overview Modulestek GPS module MG-ST1315 is a high sensitivity, low power consumption; compact size GPS module designed for a broad

More information

EN: This Datasheet is presented by the m anufacturer. Please v isit our website for pricing and availability at ore.hu.

EN: This Datasheet is presented by the m anufacturer. Please v isit our website for pricing and availability at   ore.hu. EN: This Datasheet is presented by the m anufacturer. Please v isit our website for pricing and availability at www.hest ore.hu. Features 65 channel engine for high performance acquisition GPS L1 C/A Code

More information

GPS Engine Board FGPMMOSL3

GPS Engine Board FGPMMOSL3 GPS Engine Board with MTK Chipset FGPMMOSL3 The document is the exclusive property of and should not be distributed, reproduced, or any other format without prior Copyright 2007 All right reserved. 1 History

More information

GT-321R-RS232 Fast Acquisition Enhanced Sensitivity 65 Channels GPS Sensor Receiver

GT-321R-RS232 Fast Acquisition Enhanced Sensitivity 65 Channels GPS Sensor Receiver GT-321R-RS232 Fast Acquisition Enhanced Sensitivity 65 Channels GPS Sensor Receiver The GT-321R-RS232 is a compact all-in-one GPS module solution intended for a broad range of Original Equipment Manufacturer

More information

GGA-Global Positioning System Fixed Data

GGA-Global Positioning System Fixed Data SOFTWARE COMMAND NMEA Output Command GGA-Global Positioning System Fixed Data Table B-2 contains the values for the following example: $GPGGA,161229.487,3723.2475,N,12158.3416,W,1,07,1.0,9.0,M,,,,0000*18

More information

GPS / GNSS Receiver (G-Mouse) GT-901 is a compact, high performance, and low power consumption G-Mouse.

GPS / GNSS Receiver (G-Mouse) GT-901 is a compact, high performance, and low power consumption G-Mouse. GPS / GNSS Receiver (G-Mouse) 1. Product Information 1.1 Product Name : GT-901 1.2 Product Description: GT-901 is a compact, high performance, and low power consumption G-Mouse. It uses the chipset of

More information

GM-270. CF GPS Receiver. User s Guide

GM-270. CF GPS Receiver. User s Guide GM-270 CF GPS Receiver User s Guide Jul 05, 2002 TABLE OF CONTENTS 1. Introduction.. 3 1.1 Overview.. 3 1.2 Features.. 3 2. Brief Information. 5 2.1 Hardware Interface 5 2.2 Software Interface 6 3. Functional

More information

GPS Receiver. User s Guide. Dec Rev. A

GPS Receiver. User s Guide. Dec Rev. A GR-213U GPS Receiver User s Guide Dec. 25 2005 Rev. A Technology, Inc. 1F.No 30, R&D Rd. II. Hsinchu City, Science-based Industrial Park Taiwan Phone: +886-3-6687000 Fax: +886-3-6687111 E-Mail: info@holux.com.tw

More information

FGPMMOPA6B. [Fully pin compatible with FGPMMOPA6]

FGPMMOPA6B. [Fully pin compatible with FGPMMOPA6] 66-channel GPS Engine Board Antenna Module FGPMMOPA6B with MTK Chipset [Fully pin compatible with FGPMMOPA6] The document is the exclusive property of and should not be distributed, reproduced, or any

More information

GU93030S Series. GPS/GNSS Receiver (G-Mouse) Product Description: GU93030S(M) is a compact, high performance, and low power consumption G-Mouse.

GU93030S Series. GPS/GNSS Receiver (G-Mouse) Product Description: GU93030S(M) is a compact, high performance, and low power consumption G-Mouse. GPS/GNSS Receiver (G-Mouse) 1. Product Information Product Name : GU93030S (Adhesive Mount) GU93030SM (Magnetic Mount) Product Description: GU93030S(M) is a compact, high performance, and low power consumption

More information

GPS Module DataSheet

GPS Module DataSheet GPS Module DataSheet Name: Ultra High Sensitivity and Low Power GPS Receiver Module Model No.: SKM61 Revision: 001 Revision History: Revision Description Approved Date 001 Initial Release to 001 Wood 20131015

More information

LOCOSYS Technology Inc.

LOCOSYS Technology Inc. Product name Description Version MC-1722 Datasheet of MC-1722 GPS module 1.0 1 Introduction LOCOSYS GPS MC-1722 module features high sensitivity and low power consumption. This GPS module is powered by

More information

GPS Module AGP3363. Product Datasheet & Design Guide <V1.0>

GPS Module AGP3363. Product Datasheet & Design Guide <V1.0> GPS Module AGP3363 Product Datasheet & Design Guide AMOD Technology Co.,LTD Subject to changes in technology, design and availability URL: http://www.amod.com.tw Add. 8F., No. 46, Lane 10, Jihu

More information

GPS/GNSS Antenna Module. YIC51513PGM-37 is a compact, high performance, and low power consumption GPS/GNSS Antenna Module.

GPS/GNSS Antenna Module. YIC51513PGM-37 is a compact, high performance, and low power consumption GPS/GNSS Antenna Module. GPS/GNSS Antenna Module 1. Product Information 1.1Product Name: YIC51513PGM-37 1.2Product Description: YIC51513PGM-37 is a compact, high performance, and low power consumption GPS/GNSS Antenna Module.

More information

GPS/GNSS Receiver Module

GPS/GNSS Receiver Module GPS/GNSS Receiver Module 1. Product Information 1.1 Product Name: YIC91612IEB9600 1.2 Product Description: YIC91612IEB9600 is a compact, high performance, and low power consumption GNSS engine board which

More information

GPS & BDS Antenna Module

GPS & BDS Antenna Module GPS & BDS Antenna Module 1. Product Information 1.1Product Name: YIC82525GMGB 1.2Product Description: YIC82525GMGB is a compact, high performance, and low power consumption GNSS engine board.it uses the

More information

SkyNav SKG25B Ultra High Sensitivity and Low Power GPS Receiver Module

SkyNav SKG25B Ultra High Sensitivity and Low Power GPS Receiver Module Ultra High Sensitivity and Low Power GPS Receiver Module Simplify your systems General Description The SkyNav SKG25B is a complete GPS engine module that features super sensitivity, ultra low power and

More information

GPS-001 GPS Module Manual

GPS-001 GPS Module Manual GPS-001 GPS Module Manual H-2 Technik UG (haftungsbescgränkt) Version 1.1 Version Information Date Modified By 03.2016 Kim Introduction Release Index 1. General Description... 4 2. Performance Specification...

More information

GAM-2107-MTR GPS Antenna Module. General Description. The Gotop GAM-2107-MTR is a complete. GPS engine module that features super sensitivity,

GAM-2107-MTR GPS Antenna Module. General Description. The Gotop GAM-2107-MTR is a complete. GPS engine module that features super sensitivity, General Description The Gotop GAM-2107-MTR is a complete GPS engine module that features super sensitivity, ultra low power and small form factor. The GPS signal is applied to the antenna input of module,

More information

GPS Engine Board USB Interface

GPS Engine Board USB Interface GPS Engine Board USB Interface Specification DGM-U2525B Page 1 of 14 1. Introduction 1.1. Overview The DGM-U2525B is a high sensitivity ultra low power consumption cost efficient, compact size GPS engine

More information

YIC9 Series. GPS & BDS Receiver Module. 1. Product Information 1.1 Product Name: YIC91612EBFGB-U Product Description: Product Features:

YIC9 Series. GPS & BDS Receiver Module. 1. Product Information 1.1 Product Name: YIC91612EBFGB-U Product Description: Product Features: GPS & BDS Receiver Module 1. Product Information 1.1 Product Name: YIC91612EBFGB-U8 1.2 Product Description: YIC91612EBFGB-U8 is a flash base, compact, high performance and low power consumption, standalone

More information

66-channel GPS Engine Board SmartAntenna FGPMMOPA6

66-channel GPS Engine Board SmartAntenna FGPMMOPA6 66-channel GPS Engine Board SmartAntenna with MTK Chipset FGPMMOPA6 The document is the exclusive property of and should not be distributed, reproduced, or any other format without prior permission of

More information

SKM53 GPS Module. Datasheet

SKM53 GPS Module. Datasheet SKM53 GPS Module Datasheet Name: Ultra High Sensitivity and Smart Antenna GPS Module Model No.: SKM53 Revision: V1.00 Revision History Revision Description Approved Date V1.00 Initial Release Jay 20160728

More information

GPS & GLONASS Receiver Module

GPS & GLONASS Receiver Module GPS & GLONASS Receiver Module 1. Product Information 1.1 Product Name: YIC91009EBGG-U8 1.2Product Description: YIC91009EBGG-U8 is a compact, high performance and low power consumption, standalone multiple

More information

SUP500F8. Low-Power High-Performance Low-Cost 167 Channel GPS Smart Antenna Module. Features. Applications

SUP500F8. Low-Power High-Performance Low-Cost 167 Channel GPS Smart Antenna Module. Features. Applications SUP500F8 Features 167 Channel GPS L1 C/A Code Perform 16 million time-frequency hypothesis testing per second Open sky hot start 1 sec Open sky cold start 29 sec Cold start sensitivity -148dBm Signal detection

More information

LOCOSYS Technology Inc.

LOCOSYS Technology Inc. Product name Description Version MC-1612-2R Datasheet of MC-1612-2R standalone GPS module 1.0 1 Introduction LOCOSYS GPS MC-1612-2R module features high sensitivity, low power and ultra small form factor.

More information

GOTOP. The GOTOP GAM-2222-MTR is a complete GPS engine module that features super

GOTOP. The GOTOP GAM-2222-MTR is a complete GPS engine module that features super www.gotop-zzu gotop-zzu.com GOTOP Ultra High Sensitivity and Low Power GPS Antenna Module General The GOTOP is a complete GPS engine module that features super sensitivity, ultra low power and small form

More information

Users guide ECS 1/2/3 COMPASS / GPS Sensor

Users guide ECS 1/2/3 COMPASS / GPS Sensor Users guide ECS 1/2/3 COMPASS / GPS Sensor ECS1/2/3 REV.1.2 10-05-2004 For latest update: www.elproma.com/compass Electronic Compass Sensor ECS1/2/3 Contents 1 Introduction...1 1.1 ECS1...1 1.2 ECS2...1

More information

thinkstar GPS Module Document Revision: v1.0 Document Release: July 25, 2010

thinkstar GPS Module Document Revision: v1.0 Document Release: July 25, 2010 . thinkstar GPS Module Document Revision: v1.0 Document Release: July 25, 2010 1 . Documentation History 2 . Table of Contents 1.0 Features... 5 2.0 Technical Specifications.... 6 3.0 GPS Receiver Module

More information

MiniGMouse-PS2. User Manual. Document : Datasheet Model # : GPS Date : 01-Jan -10

MiniGMouse-PS2. User Manual.   Document : Datasheet Model # : GPS Date : 01-Jan -10 Document : Datasheet Model # : GPS - 1267 Date : 01-Jan -10 MiniGMouse-PS2 User Manual Rhydo Technologies (P) Ltd. (An ISO 9001:2008 Certified R&D Company) Golden Plaza, Chitoor Road, Cochin 682018, Kerala

More information

Datasheet of GPS smart antenna module, LS20030~3-2R

Datasheet of GPS smart antenna module, LS20030~3-2R Product name Description Version LS20030-2R LS20032-2R GPS smart antenna module/usb,9600bps,30x30mm GPS smart antenna module/ttl,9600bps,30x30mm GPS smart antenna module/rs232,9600bps,30x30mm GPS smart

More information

GAM-2222-MTR GPS Antenna Module

GAM-2222-MTR GPS Antenna Module General Description The GOTOP GAM-2222-MTR is a co mplete GPS engine module that features super sensitivity, ultra low power and sma ll form factor. The GPS signal is applied t o the antenna input of module,

More information

Data Sheet / GE-A103

Data Sheet / GE-A103 Data Sheet / GE-A103 SiRFstarV Tiny, SMT-Mountable, Ultra-High Performance, GNSS Engine Board Version 1.1 NaviSys Technology Corp. http://www.navisys.com.tw/ Tel : +886-3-5632598 Fax: +886-3-5632597 Sales

More information

GPS Module DataSheet

GPS Module DataSheet GPS Module DataSheet Name: Ultra High Sensitivity and Low Power GPS Receiver Module Model No.: SKM52 Revision: 001 Revision History: Revision Description Approved Date 001 Initial Release to 001 Woody

More information

GPS93030S Series. GPS/GNSS Receiver (G-Mouse) Product Description: GPS93030S(M) is a compact, high performance, and low power consumption G-Mouse.

GPS93030S Series. GPS/GNSS Receiver (G-Mouse) Product Description: GPS93030S(M) is a compact, high performance, and low power consumption G-Mouse. GPS/GNSS Receiver (G-Mouse) 1. Product Information Product Name : GPS93030S (Adhesive Mount) GPS93030SM (Magnetic Mount) Product Description: GPS93030S(M) is a compact, high performance, and low power

More information

GPS Module DataSheet

GPS Module DataSheet GPS Module DataSheet Name: Ultra High Sensitivity and Low Power GPS Receiver Module Model NO.: SKM55 Revision: 002 Revision History: Revision Description Approved Date 001 Initial Release to 001 Neil 20100601

More information

GNSS Receiver BN-80D Datasheet BN-80D. Revision: Date:

GNSS Receiver BN-80D Datasheet BN-80D. Revision: Date: BN-80D GNSS Receiver Datasheet Revision: 5.35 Date:2018.12 1 Features: Iitem Electrical Characteristics Sensitivity Accuracy Acquisition Time Data Output Operational Limits Description Chipset Frequency

More information

GPS & GLONASS Antenna Module

GPS & GLONASS Antenna Module 5 Series GPS & GLONASS Antenna Module 1. Product Information 1.1Product Name: 51513GMGG-33 1.2Product Description: 51513GMGG-33 is a complete standalone GPS/GNSS antenna module. It can simultaneously acquire

More information

GPS Module Datasheet

GPS Module Datasheet GPS Module Datasheet Name: Ultra High Sensitivity and Low Power GPS Receiver Module Model NO.: SKM55 Revision: V3.03 Revision History: Revision Description Approved Date V1.01 Initial Release Neil 20100601

More information

C3-470C Jnavi SPECSHEET

C3-470C Jnavi SPECSHEET HighPerformance GPS Receiver C3-470C Jnavi SPECSHEET JCOM MODEL NAME C3-470C CODE NO. 6081307 CUSTOMER MODEL NAME C3-470C INVESTIGATION INSPECTION APPROVAL J communications co., Ltd. J communications co.,

More information

Specifying GPS Disciplined Oscillators

Specifying GPS Disciplined Oscillators Clock modules Introduction Are you using GPS as a timing reference? Are you using some other timing source as a reference? Does this result in a 1 pulse per second (1PPS) signal? What happens when you

More information

GPS Receiver Engine Board

GPS Receiver Engine Board User Manual GPS Receiver Engine Board ET-202 Company Name: GLOBALSAT TECHNOLOGY CORPORATION 2-1F, No. 16, Chien 8 Rd, Far East Century Park, Chung Ho City, Taipei Hsien, Taiwan Tel:886-2-82263799 Fax:886-2-82263899

More information

SkyNav GM25 Ultra High Sensitivity and Low Power GPS Receiver Module

SkyNav GM25 Ultra High Sensitivity and Low Power GPS Receiver Module Ultra High Sensitivity and Low Power GPS Receiver Module Simplify your systems General Description The SkyNav GM25 is a complete GPS engine module that features super sensitivity, ultra low power and small

More information

GPS & GLONASS Antenna Module

GPS & GLONASS Antenna Module 5 Series GPS & GLONASS Antenna Module 1. Product Information 1.1Product Name: 51515GMSGG-33 1.2Product Description: 51515GMSGG-33 is a complete standalone GPS/GNSS antenna module. It can simultaneously

More information

based) Data Sheet High-Performance ost 65 Channel GPS Engine Board (Flash GPS-622F GPS SMART RECEIVER WITH ANTENNA

based) Data Sheet High-Performance ost 65 Channel GPS Engine Board (Flash GPS-622F GPS SMART RECEIVER WITH ANTENNA Low-Power High-Performance and Low-Cost ost 65 Channel GPS Engine Board (Flash based) Data Sheet Abstract Technical data sheet describing the cost effective, high-performance GPS622F based series of ultra

More information

based) Data Sheet Version 1.0 High-Performance ost 65 Channel GPS Engine Board (ROM GPS-622R GPS SMART RECEIVER WITH ANTENNA

based) Data Sheet Version 1.0 High-Performance ost 65 Channel GPS Engine Board (ROM GPS-622R GPS SMART RECEIVER WITH ANTENNA Low-Power High-Performance and Low-Cost ost 65 Channel GPS Engine Board (ROM based) Data Sheet Version 1.0 Abstract Technical data sheet describing the cost effective, high-performance GPS622R based series

More information

GT-1108-MT GPS Receiver Module. General Description. Features. Applications

GT-1108-MT GPS Receiver Module. General Description. Features. Applications General Description The Gotop GT-1108-MT is a complete GPS engine module that features super sensitivity, ultra low power and small form factor. The GPS signal is applied to the antenna input of module,

More information

Data Sheet Version 1.3

Data Sheet Version 1.3 Low-Power High-Performance and Low-Cost ost 65 Channel GPS Engine Board (Flash based) Data Sheet Version 1.3 Abstract Technical data sheet describing the cost effective, high-performance GPS610F based

More information

Bluetooth GPS Navigator

Bluetooth GPS Navigator Userr manuall v1..1 USER MANUAL UG-301 Bluetooth GPS Navigator The UG-301 is optimized for good performance and low cost. Its 12 parallel channels and 4000 search bins provide short start-up time and fast

More information

GPS Module DataSheet

GPS Module DataSheet GPS Module DataSheet Name: Ultra High Sensitivity and Low Power GPS Receiver Module Model No.: SKM82B Revision: V1.02 Revision History: Revision Description Approved Date V1.01 Initial Release to 001 Woody

More information

UniTraQ OEM Module. GT-310F (Flash version) Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module. Features

UniTraQ OEM Module. GT-310F (Flash version) Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module. Features UniTraQ OEM Module Features 12 parallel channel GPS receiver 4000 simultaneous time-frequency search bins SBAS (WAAS, EGNOS) support Programmable Flash version -140dBm acquisition sensitivity -150dBm tracking

More information

LOCOSYS Technology Inc.

LOCOSYS Technology Inc. Product name Description Version LS2003C-G Standalone multiple GNSS smart antenna module 1.2 1 Introduction LS2003C-G is a complete standalone GNSS smart antenna module, including embedded patch antenna

More information

GPS Module DataSheet

GPS Module DataSheet GPS Module DataSheet Name: Ultra High Sensitivity and Low Power GPS Receiver Module Model NO.: SKG13C Revision: 003 Revision History: Revision Description Approved Date 001 Initial Release to 001 Neil

More information

Glonass/GPS Module Datasheet

Glonass/GPS Module Datasheet Glonass/GPS Module Datasheet Name: Ultra High Sensitivity and Low Power Glonass/GPS Receiver Module Model NO.: SKM55M Revision: V2.02 Revision History: Revision Description Approved Date V1.01 Initial

More information

ET-662 Ve rsion Product Information. Product Name: ET-662 Product Description:

ET-662 Ve rsion Product Information. Product Name: ET-662 Product Description: 1. Product Information Product Name: ET-662 Product Description: ET-662 is a compact, high performance, and low power consumption GPS engine board. It uses SiRF Star III chipset which can track up to 20

More information

Data Sheet / GE-A12. SiRFstarV. Tiny, SMT-Mountable, Ultra-High Performance, GNSS Engine Board. Version 1.1

Data Sheet / GE-A12. SiRFstarV. Tiny, SMT-Mountable, Ultra-High Performance, GNSS Engine Board. Version 1.1 Data Sheet / GE-A12 SiRFstarV Tiny, SMT-Mountable, Ultra-High Performance, GNSS Engine Board Version 1.1 NaviSys Technology Corp. http://www.navisys.com.tw/ Tel : +886-3-5632598 Fax: +886-3-5632597 Sales

More information

BRB900 GPS Telemetry System August 2013 Version 0.06

BRB900 GPS Telemetry System August 2013 Version 0.06 BRB900 GPS Telemetry System August 2013 Version 0.06 As of January 2013, a new model of the BRB900 has been introduced. The key differences are listed below. 1. U-blox GPS Chipset: The Trimble Lassen IQ

More information

YIC5 Series. GPS/GNSS Receiver Module. 1. Product Information 1.1 Product Name: YIC51612EB Product Description YUECHUNG INTERNATIONAL CORP.

YIC5 Series. GPS/GNSS Receiver Module. 1. Product Information 1.1 Product Name: YIC51612EB Product Description YUECHUNG INTERNATIONAL CORP. 1. Product Information 1.1 Product Name: YIC51612EB-39 GPS/GNSS Receiver Module 1.2 Product Description YIC51612EB-39 features high sensitivity, low power and ultra small form factor. The module is powered

More information

LOCOSYS Technology Inc.

LOCOSYS Technology Inc. Product name Description Version MC-1010-G Standalone multiple GNSS module 1.0 1 Introduction LOCOSYS MC-1010-G is a complete standalone GNSS module. The module can simultaneously acquire and track multiple

More information

YIC5 Series. GPS & BDS Receiver Module. 1. Product Information. 1.1 Product Name: YIC51612EBGB Product Description

YIC5 Series. GPS & BDS Receiver Module. 1. Product Information. 1.1 Product Name: YIC51612EBGB Product Description 1. Product Information GPS & BDS Receiver Module 1.1 Product Name: YIC51612EBGB-33 1.2 Product Description YIC51612EBGB-33 features high sensitivity, low power and ultra small form factor. The module is

More information

GPS+ GLONASS Engine Board

GPS+ GLONASS Engine Board GPS+ GLONASS Engine Board Hardware Data Sheet Product No : MT-5531G Version 0.1 Issue Date 2012/12 Globalsat WorldCom GROUP 16F., No. 186, Jian-Yi Road, Chung-Ho City, Taipei Hsien 235, Taiwan Tel: 886-2-8226-3799

More information

2009 i-lotus - All Rights Reserved

2009 i-lotus - All Rights Reserved 2009 i-lotus - All Rights Reserved The information contained in this document is for use in acceptance of the i-lotus terms and conditions, and may be subject to change without notice. This information

More information

Beidou/GPS Module Datasheet

Beidou/GPS Module Datasheet Beidou/GPS Module Datasheet Name: Ultra High Sensitivity and Low Power GPS/BD Receiver Module Model NO.: SKM55D Revision: V2.02 Revision History: Revision Description Approved Date V1.01 Initial Release

More information

GPS Module GYSFDMAXB. Application Note

GPS Module GYSFDMAXB. Application Note GPS Module GYSFDMAXB Application Note In case you adopt this module and design some appliance, please ask for the latest specifications to the local sales office. 1/14 Table of content Revision log 1.

More information

S1216R. Low-Power High-Performance Low-Cost 65 Channel SMD GPS Module. Features. Applications

S1216R. Low-Power High-Performance Low-Cost 65 Channel SMD GPS Module. Features. Applications S1216R S1216R ROM-based Low-Power High-Performance Low-Cost 65 Channel SMD GPS Module Features 65 Channel GPS L1 C/A Code Perform 8 million time-frequency hypothesis testing per second Open sky hot start

More information

DEVICE CONFIGURATION INSTRUCTIONS. WinFrog Device Group:

DEVICE CONFIGURATION INSTRUCTIONS. WinFrog Device Group: WinFrog Device Group: Device Name/Model: Device Manufacturer: Device Data String(s) Output to WinFrog: WinFrog Data String(s) Output to Device: WinFrog Data Item(s) and their RAW record: GPS NMEA GPS (Sercel)

More information

YIC5 Series. GPS/GNSS Receiver Module. 1. Product Information 1.1 Product Name: YIC51613EB. 1.2 Product Description YUECHUNG INTERNATIONAL CORP.

YIC5 Series. GPS/GNSS Receiver Module. 1. Product Information 1.1 Product Name: YIC51613EB. 1.2 Product Description YUECHUNG INTERNATIONAL CORP. 1. Product Information 1.1 Product Name: YIC51613EB GPS/GNSS Receiver Module 1.2 Product Description YIC51613EB features high sensitivity, low power and ultra small form factor. The module is powered by

More information

JRC/CRT GPS Module. Hardware Specification

JRC/CRT GPS Module. Hardware Specification JRC/CRT GPS Module Hardware Specification This document specifies the electrical, mechanical, and behavioral characteristics of JRC/CRT GPS engine module. Module:G591 Version: V2.0 Date: 2008-05-26 Drawn

More information

Datasheet of GNSS smart antenna module, LS2003G-B2

Datasheet of GNSS smart antenna module, LS2003G-B2 Product name Description Version LS2003G-B2-T GNSS smart antenna module/ttl,9600bps,30x30mm LS2003G-B2-R GNSS smart antenna module/rs232,9600bps,30x30mm Datasheet of GNSS smart antenna module, LS2003G-B2

More information

FGPMMOPA6B Datasheet FGPMMOPA6B. [Fully pin compatible with FGPMMOPA6]

FGPMMOPA6B Datasheet FGPMMOPA6B. [Fully pin compatible with FGPMMOPA6] 66-channel GPS Engine Board Antenna Module FGPMMOPA6B with MTK Chipset [Fully pin compatible with FGPMMOPA6] The document is the exclusive property of and should not be distributed, reproduced, or any

More information

GP-2117 GPS&GLONASS Antenna Module

GP-2117 GPS&GLONASS Antenna Module General Description The ADH-Tech GP-2117 is a complete GPS&GLONASS engine module that features super sensitivity, ultra low power and small form factor. The GPS&GLONASS signal is applied to the antenna

More information

Asynchronous Serial Communications The MC9S12 Serial Communications Interface (SCI) Asynchronous Data Transfer

Asynchronous Serial Communications The MC9S12 Serial Communications Interface (SCI) Asynchronous Data Transfer Asynchronous Serial Communications The MC9S12 Serial Communications Interface (SCI) Asynchronous Data Transfer In asynchronous data transfer, there is no clock line between the two devices Both devices

More information

Quick Start. Tersus GNSS Center. Configuration Tools for Tersus GNSS RTK Systems.

Quick Start. Tersus GNSS Center. Configuration Tools for Tersus GNSS RTK Systems. Quick Start Tersus GNSS Center Configuration Tools for Tersus GNSS RTK Systems www.tersus-gnss.com July, 2016 1. Quick Start Guide of Tersus GNSS Center This quick start guide provides the basic information

More information

Modules On The Go Series

Modules On The Go Series 4D SYSTEMS Modules On The Go Series MOTG-GPS Pluggable µsd GPS Module Document Date: 21 st November 2011 Document Revision: 2.0 2011 4D Systems www.4dsystems.com.au Page 1 of 41 4D SYSTEMS MOTG-GPS Pluggable

More information

YIC5 Series. GPS & BDS Receiver Module. 1. Product Information. 1.1 Product Name: YIC52217EBGB Product Description

YIC5 Series. GPS & BDS Receiver Module. 1. Product Information. 1.1 Product Name: YIC52217EBGB Product Description 1. Product Information GPS & BDS Receiver Module 1.1 Product Name: YIC52217EBGB-33 1.2 Product Description YIC52217EBGB-33 features high sensitivity, low power and ultra small form factor. The module is

More information

GPS Modules ME-1000RW. Technical Data Sheet Version channels with ultra-high sensitive Smart GPS Antenna module

GPS Modules ME-1000RW. Technical Data Sheet Version channels with ultra-high sensitive Smart GPS Antenna module ME-1000RW 65 channels with ultra-high sensitive Smart GPS Antenna module Technical Data Sheet Version 1.2 Abstract Technical data sheet describing the cost effective, high-performance ME-1000RW based series

More information

ASA-3020-UB GPS Antenna Module

ASA-3020-UB GPS Antenna Module General Description The ASA-3020-UB module series is a family of stand-alone GPS receivers featu ring the high performance u-blox 6 positio ning engine.these flexible and cost effecti ve receivers offer

More information

FGPMMOPA6B. [Fully pin compatible with FGPMMOPA6]

FGPMMOPA6B. [Fully pin compatible with FGPMMOPA6] 66-channel GPS Engine Board Antenna Module FGPMMOPA6B with MTK Chipset [Fully pin compatible with FGPMMOPA6] The document is the exclusive property of and should not be distributed, reproduced, or any

More information

GPS Module Datasheet

GPS Module Datasheet GPS Module Datasheet Name: Ultra High Sensitivity and Low Power GPS Receiver Module Model No.: SKG13BL Revision: V3.01 Revision History: Revision Description Approved Date V1.01 Initial Release to V1.01

More information