Reference Designs for Embedded Controls

Size: px
Start display at page:

Download "Reference Designs for Embedded Controls"

Transcription

1 Reference Designs for Embedded Controls Chiu H. Choi University of North Florida, Abstract - A set of reference designs suitable for our student design projects was developed and tested. The purpose is to make them available for students to choose the ones suitable for integration into their projects with confidence. All the reference designs are available on our website. Some of those that are intended for embedded control applications are described in this paper. They are reference designs for DC motor driver, stepper motor driver, and GPS module. These reference designs were adopted into our embedded control projects before. Other reference designs were also developed but due to limited space are not included into this paper but the hyperlinks to them are provided. Some of the interesting projects and their evaluations are also described in this paper. Another aspect of this paper is the description of the structure of the reference designs and the various issues encountered. The information should be useful to those intend to develop reference designs for their own design courses. Index Terms reference designs, capstone design projects, embedded control projects, microcontroller applications. I. INTRODUCTION Several of our senior level courses require students to complete design projects. These courses include linear control systems, microcontroller applications, and capstone design courses. Many of the design projects are microcontroller-based with embedded control flavor. The microcontroller selected for our courses was the Freescale s MC9S12C32 microcontroller unit (MCU). The MCU is surfaced mounted on the Axiom s CSM-12C32 module. It is the module being integrated into the projects. The reasons for choosing the MC9S12C32 are that the MCU is simple enough for the students to learn its functions quickly and that it has sophisticated enough on-chip peripherals for solving a wide range of embedded control problems. The on-chip peripherals include general purpose input outputs, timer with input capture and output compare, pulse accumulator, universal asynchronous receiver/transmitter (UART), serial peripheral interface (SPI), pulse width modulator (PWM), and more. CodeWarrior Development Studio for HCS12 was the software development tool selected. It supports C, C++, absolute assembly, and relocatable assembly programming. Our students were taught how to use the MCU in our microcontroller applications courses ([1], [2], [3]). In the embedded control projects, actuators and sensors are widely used. Many students have high level concepts in block diagrams for integrating them but only a few of them know how to implement the individual blocks and their interfacing. Many times the circuits that they designed for individual blocks in the block diagram did not work and it took several iterations to get it to work. This wasted much time and that could lead to incomplete project at the end of the term. It is because of this issue that reference designs are proposed. The reference designs are intended to be proven solutions that the students can integrate into their projects with confidence. There are reference designs in the market, e.g., Freescale University Program and the Arduino community [7]. However, they do not match all our needs. We give careful considerations to what information to be provided in our reference designs. On one hand, a complete solution is preferred by the students but that will encourage straight copying without any student input. That is not pedagogically desirable. On the other hand, a meager reference design solution will not be helpful either. A balance should be sought. We propose a structure for what information to be included in the reference designs and show a few examples. In these examples, sufficient hardware interfacing, software, and other information are provided so that students with some additional effort will be able to integrate them into their projects. The rest of this paper is organized as follows: the reference designs mentioned above are described in the next section. In particular the reference designs are DC Motor driver, stepper motor driver, and GPS module. Section III covers some of the embedded control projects that contained these designs. The reference designs development process and the issues encountered are discussed in Section IV. Concluding remarks are provided in Section V. II. STRUCTURE OF THE REFERENCE DESIGNS The structure of the reference designs consists of 1) description of the design, 2) hardware interfacing techniques, 3) circuit and wiring diagrams, 4) code snippets in C language, and 5) ordering information with hyperlinks. The materials prepared for the reference designs are structured in such manner that extra work is required of the students in order to use them in their projects. This prevents the students from reproducing them without their own S2F-1

2 thoughts. Three examples are given in this section to illustrate such structure. The code snippets in the reference designs are suitable for MC9S12C series of microcontrollers running at 8 MHz bus clock. The codes can be easily modified for other members of the MC9S12 family of 16-bit microcontrollers. The code snippets provided in the reference designs are intentionally condensed so that the students need to write their own additional codes in their applications. Students were encouraged to modify these code snippets and to integrate them into their main programs. Hardware interfacing to the Freescale 9S12C32 MCU The wiring diagram in Figure 1 below shows how to connect the Pololu motor driver carrier board to the CSM- 12C32 module, which pin-out diagram is also shown in the same figure. The motor direction control chart in Table II shows how to drive a motor in clockwise and counterclockwise directions and braking. TABLE II MOTOR DIRECTION CONTROL CHART FROM THE TB6612FNG DATASHEET A website was developed for hosting the reference designs for students to download. Further, the web versions of these designs are provided as hyperlinks in this paper. Example 1: DC motor driver This reference design shows students how to interface a DC motor to the MCU through an inexpensive DC motor driver. The materials developed for this reference design is found in the hyperlink and is repeated below. DC motors are usually driven by microcontrollers through motor drivers. There are many motor drivers in the market with a wide range of voltage and current specifications. The particular DC motor driver discussed in this section is Toshiba s TB6612FNG dual motor driver, which is very easy to use and is available in a carrier board. The motor driver can independently control two bidirectional DC motors. The operating voltage range is from 4.5 to 13.5 V. The peak current output is 3 A per channel with 1 A continuous. It is useful for driving lowpower motors. A picture of the motor driver is shown in Figure 1. Ordering information with web link for the datasheet of the motor driver is shown in Table I. Code snippets In the wiring diagram above, the PW0 pin of the microcontroller drives the PWMA pin of the motor driver. A C-function for initializing PW0 as a pulse width modulator (PWM) is shown as follows: Void init_pwm(void) { PWMPRCLK=0x06; //SET CLOCK A TO 125 Khz //PWMSCLA=0x06; // clock SA not used PWMCLK=0x00; // choose CLOCK A as the clock source for PWM channel 0 PWMCTL=0x00; // 8 bit pwm signal at channel 0 PWMPOL=0x01; // CHANNEL 0 IS ACTIVE HIGH PWMCAE=0x00; // channel 0 is left aligned PWMPER0=250; // PERIOD=250*ONE PERIOD OF CLK A=2ms PWMDTY0=200; // DUTY CYCLE SET TO 80% INITIALLY //PWMCNT0=0; PWME=0x01; // ENABLE CHANNEL 0 FIGURE 1 INTERFACING OF TOSHIBA TB6612FNG WITH CSM-12C32 MODULE. TABLE I TOSHIBA TB6612FNG ORDERING INFORMATION Vendor Part # Weblink Description Pololu Pololu TB6612FNG Corpora item #: m/catalog/product/71 Dual Motor tion Driver Carrier Unit Price $9.95 In the code the duty cycle is set to be 80%. To increase the speed, increase the duty cycle. To drive the motor moving in the clockwise direction, a C-function for that is shown as follows. Note that PT1 and PT2 are used as GPIO for driving AIN1 and AIN2 respectively. It is assume that PW0 is outputting the PWM signal. Void clockwise(void) { PTT_PTT2 = 0; To drive the motor moving in the counterclockwise direction, a C-function for that is shown as follows. It is assumed that PT1 and PT2 are used as GPIO for driving AIN1 and AIN2 respectively. Void counterclockwise(void) { PTT_PTT2 = 1; S2F-2

3 A C-function for braking is shown as follows. Void braking(void) { PTT_PTT2 = 1; To stop the motor abruptly, a C-function for that is shown as follows. Void stop(void) { PTT_PTT2 = 0; A few details of the code snippets above are intentionally left out for the students to figure out. This way will prevent the students from cut and paste without their own thinking. Example 2: Stepper motor driver This reference design shows students how to interface a stepper motor to the MCU through an inexpensive stepper motor driver. The materials developed for this reference design is described below and is shown in the hyperlink Stepper motors are used in printers, disk drives, and other devices where precise position control is required. Stepper motors do not turn continuously like DC motors. They move in steps such as 1.8 degrees or so. There are several types of stepper motors such as unipolar and bipolar. Electronic circuits driving these motors are different from those of DC motors. A common stepper motor driver is Allegro A3967. A module for this driver is available at Sparkfun Electronics. The module is labeled as EasyDriver v3 Stepper Motor Driver with part number ROB It is compatible with 5V TTL signals. This module is applicable to driving bipolar stepper motors. The EasyDriver requires a 7V to 30V supply to power a stepper motor and has an on board voltage regulator for driving the internal logic circuitry. The A3967 driver on the module is configured for 8-microstep mode with adjustable current control from 150mA/phase to 750mA/phase. The pin-out diagram of the stepper motor driver module is shown in Figure 2 (from the datasheet of EasyDriver). FIGURE 2 PIN-OUT OF TOSHIBA TB6612FNG EASYDRIVER MODULE. Ordering information with web link for the datasheet of the stepper motor driver is shown in Table III. Hardware interfacing to the Freescale 9S12C32 MCU The wiring diagram in Figure 3 shows how to connect the EasyDriver to the microcontroller and a bipolar stepper motor. GPIO pin PT0 is connected to the Direction pin. GPIO pin PT1 is connected to the Step pin. Other GPIO pins can be used instead of PT0 and PT1. A low-to-high transition on the STEP pin will microstep the motor. The EasyDriver is configured with 8 microsteps for one increment in stepper positioning. TABLE III ORDERING INFORMATION FOR ALLEGRO A3967 EASYDRIVER Part Vendor # Weblink Description Sparkfun Electronics ROB /commerce/product_info. php?products_id=8368 EasyDriver v3 Stepper Motor Driver Unit Price FIGURE 3 HARDWARE INTERFACE BETWEENT THE EASYDRIVER WITH CSM-12C32. The motor direction control chart in Table IV shows how to drive a stepper motor in clockwise direction. To drive it in the counterclockwise direction, simply reverse the sequence. TABLE IV STEPPER MOTOR DIRECTION CONTROL CHART step wire 1 wire 2 wire 3 wire 4 1 high low high low 2 low high high low 3 low high low high 4 high low low high Software development In the wiring diagram above, the PT0 pin of the microcontroller drives the Direction pin of the motor driver. The PT1 pin drives the STEP pin of the driver. A C-function for initializing PT0 and PT1 as general purpose output pins is shown as follows: Void init_pt01(void) { DDRT_DDRT0 = 1; DDRT_DDRT1 = 1; $15 S2F-3

4 To drive the stepper motor moving in the clockwise direction in one microstep, a C-function for that is shown as follows. When this function is executed 8 times, the stepper will have advanced one step. the TXD of the microcontroller goes straight to the RX0 of the GPS module terminal block. Void clockwise(void) { PTT_PTT0 = 0; Waitms(1); //hold at low level for 1 ms, can be long if necessary Waitms(10); //hold at high level for 10 ms, can be long if necessary //reset PT1 To drive the stepper motor moving in the counterclockwise direction in one microstep, a C-function for that is shown as follows. When this function is executed 8 times, the stepper will have advanced one step backward. Void counterclockwise(void) { PTT_PTT0 = 1; Waitms(1); Waitms(5); Example 3: Global positioning system module This reference design shows how to connect a GPS module to the CSM-12C32 module and provides 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. An easy-to-use GPS module is Vincotech 340- V23993-EVA1080A51GPS module, which consists of one GPS module and one GPS antenna on a coaxial cable. The on-board firmware supports bi-directional serial connection by using a full duplex UART 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. A picture of the GPS module is shown in Figure 4. Ordering information with web link for the datasheet is shown in Table V. The materials developed for this reference design can be found in the hyperlink TABLE V VINCOTECH GPS MODULE ORDERING INFORMATION Vendor Part # Weblink Description Mouser 340-V EVA1080-A Evaluation kit for Electronics EVA1080-A Vincotech A1080-A GPS module Unit Price $130 Hardware interfacing to the CSM-12C32 module If the CSM-12C32 module is powered at 5 V, the wiring diagram is shown in Figure 4. If the CSM-12C32 module is powered at 3.3 V, the voltage divider can be removed and FIGURE 4 HARDWARE INTERFACING OF GPS MODULE TO CSM-12C32 MODULE. Software development The GPS module supports the NMEA interface. 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 full 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. Their default settings are shown as follows: $GPGGA (default: ON) $GPVTG (default: OFF) $GPRMC (default: ON) $GPGSA (default: ON) $GPGSV (default: ON, 0.2Hz) $GPGLL (default: OFF) Commands can be sent to the GPS module to turn an NMEA sentence on or off. The format of the command was described in the Vincotech s GPS firmware datasheet. For example, to disable the GGA message, the command is: $PSRF103,00,00,00,01*21 S2F-4

5 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 at 4,800 baud 8N1 format is shown as follows: 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, one can use the GPGGA sentence and the format of which is shown in Table VI below. TABLE VI GPGGA - GLOBAL POSITIONING SYSTEM FIX DATA SENTENCE FORMAT FROM THE VINCOTECH GPS USER S MANUAL Example $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 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; S2F-5

6 void putstring(char *stringptr){ while((*stringptr!= 0x00)) putchar(*stringptr++); The functions getchar, getstring, putchar, and putstring are specific for the serial communication interface (UART) of the Freescale MC9S12C32 microcontrollers. Further, the components/modules of the reference designs should be easily available with good documentation, which will speed up the implementation of the designs. As electronics change rapidly, it is necessary that the reference designs be updated on a regular basis. III. A PROJECT THAT USED REFERENCE DESIGNS A project [4] selected from our senior level microcontroller applications course used the GPS module described above. As stated in the project report, The objectives of this project were to configure the MCU Project Board for use with the EVA1080-A-02 GPS module, to create, build, and debug five C-functions for getting the latitude, longitude, number of satellites, date, and time from the GPS module by using Code Warrior, and to flash the application into the microcontroller and display the parameters on a PC through the SCI. The objectives were achieved. Pictures of the project are shown in Figure 5 and Figure 6. FIGURE 6 A PICTURE OF THE GPS PROJECT. FIGURE 5 SCREEN CAPTURE OF GPS DATA DISPLAYED ON THE PC. In the conclusion of the project report, the students stated that The purpose of this project was not only to allow the student to be independently creative but to encourage the student to apply the many concepts learned in class and labs. Execution of the project prepared the student with a hands-on experience that will ready for future use. Overall it was a successfully executed project with the observed result matching expectations. The reference design materials were used in the project. Some other projects that used reference designs are in [5] and [6]. IV. REFERENCE DESIGNS DEVELOPMENT ISSUES The selection of which reference design to develop should be based on the particular applications covered in the courses. Embedded system projects are popular among our students. Therefore we develop reference design around that application. Cost of the reference designs is another factor. The cost should be within the budget of the students and the department. Reliability of the module is another factor to consider. The design should be able to sustain the abuses that inexperienced students inadvertently committed. V. CONCLUDING REMARKS A number of reference designs for embedded control projects were developed. They were used by students in their projects. The designs will reduce the burden on the students part in coming up with a complete solution from scratch. There are sufficient details in the reference designs as shown in the examples above to get the students started. Some other details are intentionally left out for the students to figure out so that they will have their share of work to do. The structure of the reference designs proposed appears to be adequate as indicated by the student projects. REFERENCES [1] Cady, F., Software and Hardware Engineering Assembly and C Programming for the Freescale HCS12 Microcontroller, 2nd ed., Oxford, [2] Choi, C.H., A Microcontroller Applications Course and Freescale s Microcontroller Student Learning Kit, Proceedings of the 2008 American Society for Engineering Education Annual Conference, June 2008, Pittsburg, PA. [3] MC9S12C128 Data Sheet, Rev. 1.16, Freescale Semiconductors, Oct [4] Nguyen, N., Class Project Report: Interfacing GPS Modules to MC9S12C32 Microcontrollers, Univ. of North Florida, July 30, [5] Lynch, J.M., and E. Larios, Class Project Report: Swinging Pendulum Acceleration Measurement, Univ. of North Florida, July 29, [6] Cooke, B., and N. Watt, Class Project Report: Hitachi HM55B Digital Compass, Univ. of North Florida, July 30, [7] Arduino website, June This work is supported by a grant provided by the Academic Affairs of the University of North Florida. S2F-6

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

Part Number Weblink for the part Description Unit Price. Hardware interfacing to the Freescale 9S12C32 MCU on board the CSM-12C32 module 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.

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

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

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

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-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

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

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

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

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-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

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

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

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

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

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

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

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

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

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

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

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

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/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

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

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

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

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

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

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

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

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 / 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

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

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

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

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

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

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

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

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

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

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

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

Motor Control Demonstration Lab

Motor Control Demonstration Lab Motor Control Demonstration Lab JIM SIBIGTROTH and EDUARDO MONTAÑEZ Freescale Semiconductor launched by Motorola, 8/16 Bit MCU Division, Austin, TX 78735, USA. Email: j.sibigtroth@freescale.com eduardo.montanez@freescale.com

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

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

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

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

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

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

Microcontroller-based Feedback Control Laboratory Experiments

Microcontroller-based Feedback Control Laboratory Experiments Microcontroller-based Feedback Control Laboratory Experiments http://dx.doi.org/10.3991/ijep.v4i3.3529 Chiu. H. Choi University of North Florida, Jacksonville, Florida, USA Abstract this paper is a result

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

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

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

CONDOR C1919 GPS RECEIVER MODULE technical notes GENERAL OVERVIEW

CONDOR C1919 GPS RECEIVER MODULE technical notes GENERAL OVERVIEW CONDOR C1919 GPS RECEIVER MODULE TECHNICAL HIGHLIGHTS Receiver: GPS L1 frequency (17. MHz), C/A code, -channel continuous tracking NMEA output and input: serial port On-board low noise amplifier GENERAL

More information

DMC-8 (SKU#ROB )

DMC-8 (SKU#ROB ) DMC-8 (SKU#ROB-01-007) Selectable serial or parallel interface Use with Microcontroller or PC Controls 2 DC motors For 5 24 Volt Motors 8 Amps per channel Windows software included Fuse protection Dual

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

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

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

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

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

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

Microcontrollers. Serial Communication Interface. EECE 218 Microcontrollers 1

Microcontrollers. Serial Communication Interface. EECE 218 Microcontrollers 1 EECE 218 Microcontrollers Serial Communication Interface EECE 218 Microcontrollers 1 Serial Communications Principle: transfer a word one bit at a time Methods:» Simplex: [S] [R]» Duplex: [D1] [D2]» Half

More information

Brian Hanna Meteor IP 2007 Microcontroller

Brian Hanna Meteor IP 2007 Microcontroller MSP430 Overview: The purpose of the microcontroller is to execute a series of commands in a loop while waiting for commands from ground control to do otherwise. While it has not received a command it populates

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

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

CONDOR C1216 GPS RECEIVER MODULE technical notes ZELIA INTEGRATES ANTENNA, GPS RECEIVER, RTC AND LNA

CONDOR C1216 GPS RECEIVER MODULE technical notes ZELIA INTEGRATES ANTENNA, GPS RECEIVER, RTC AND LNA CONDOR C1216 GPS RECEIVER MODULE technical notes Zelia GPS RECEIVER MODULE TECHNICAL HIGHLIGHTS Integrated antenna element, GPS receiver, real-time clock, and low noise amplifier Receiver: Trimble Condor

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

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

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

MN5020HS Smart GPS Antenna Module

MN5020HS Smart GPS Antenna Module 1 Description The Micro Modular Technologies MN5020HS Smart Global Positioning System (GPS) Antenna Module is a complete 20-channel receiver with an integrated 18 x 18 mm patch antenna. With this highly

More information

ONCORE ENGINEERING NOTE M12 Oncore

ONCORE ENGINEERING NOTE M12 Oncore ONCORE ENGINEERING NOTE M12 Oncore 1. Product Specifications 2. Basic Description 3. Mechanical 4. Environmental 5. Electrical 6. RF Characteristics of Receiver 7. RF Requirements for Antenna 8. Performance

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

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

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

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

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

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

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

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

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

SA-320 Installation Guide SA-320. Installation Guide. Date: Mar, 2011 Version: 2.5. All Rights Reserved

SA-320 Installation Guide SA-320. Installation Guide. Date: Mar, 2011 Version: 2.5. All Rights Reserved SA-320 Installation Guide Date: Mar, 2011 Version: 2.5 All Rights Reserved Page 1 TABLE OF CONTENTS 1. Product Overview......3 1.1 Main Features...3 1.2 Applications.....3 1.3 Package Content.....3 2.

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

GLOBALSAT GPS Engine Board

GLOBALSAT GPS Engine Board GLOBALSAT GPS Engine Board Hardware Datasheet Product No : MT-332(SMA) Version 1.0 GlobalSat WorldCom Corporation 16F., No. 186, Jian-Yi Road, Chung-Ho City, Taipei Hsien 235, Taiwan Tel: 886-2-8226-3799

More information

Multi-Sensor Integration and Fusion using PSoC

Multi-Sensor Integration and Fusion using PSoC Multi-Sensor Integration and Fusion using PSoC M.S. FINAL PROJECT REPORT Submitted by Student Name Master of Science in Electrical and Computer Engineering The Ohio State University, Columbus Under the

More information

CONDOR C1722 GPS RECEIVER MODULE technical notes

CONDOR C1722 GPS RECEIVER MODULE technical notes CONDOR C1722 GPS RECEIVER MODULE TECHNICAL HIGHLIGHTS Receiver: GPS L1 frequency (1575.42 MHz), C/A code, 22-channel continuous tracking NMEA output and input: serial port, USB port On-board low noise

More information

Training Schedule. Robotic System Design using Arduino Platform

Training Schedule. Robotic System Design using Arduino Platform Training Schedule Robotic System Design using Arduino Platform Session - 1 Embedded System Design Basics : Scope : To introduce Embedded Systems hardware design fundamentals to students. Processor Selection

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

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

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 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

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

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

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board IXDP610 Digital PWM Controller IC Evaluation Board General Description The IXDP610 Digital Pulse Width Modulator (DPWM) is a programmable CMOS LSI device, which accepts digital pulse width data from a

More information

EDE1204 Bi-Polar Stepper Motor IC

EDE1204 Bi-Polar Stepper Motor IC EDE1204 Bi-Polar Stepper Motor IC EDE1204 Coil B Control Signal 1 Coil B Coil A 18 Coil A Control Signal Coil B Control Signal 2 Coil B Coil A 17 Coil A Control Signal Connect to +5V DC 3 +5V OSC1 16 Oscillator

More information

Project Final Report: Directional Remote Control

Project Final Report: Directional Remote Control Project Final Report: by Luca Zappaterra xxxx@gwu.edu CS 297 Embedded Systems The George Washington University April 25, 2010 Project Abstract In the project, a prototype of TV remote control which reacts

More information

Select the single most appropriate response for each question.

Select the single most appropriate response for each question. ECE 362 Final Lab Practical - 1 - Practice Exam / Solution PART 1: Multiple Choice Select the single most appropriate response for each question. Note that none of the above MAY be a VALID ANSWER. (Solution

More information