GPS Receiver. Build and program your own GPS receiver. Contents. Overview Challenge 1: Understanding GPS Data. Overview

Size: px
Start display at page:

Download "GPS Receiver. Build and program your own GPS receiver. Contents. Overview Challenge 1: Understanding GPS Data. Overview"

Transcription

1 GPS Receiver Build and program your own GPS receiver. Contents Overview Challenge 1: Understanding GPS Data o Collecting Your Components o Connecting the Receiver to Your Computer o Setting up a Terminal Emulator o Understanding GPS Data Challenge 2: Controlling the Receiver o Collecting Your Components o Connecting the Receiver to the Chip o Displaying Raw GPS Data on the LCD o Parsing the Raw GPS Data o Selecting GPS Output Streams o Displaying Specific GPS Data Elements o Formatting GPS Data on Two Lines Overview In this project, you will build an interface to the GlobalSat EM-406A GPS Receiver. The EM-406A is a 20-channel GPS receiver based on the SiRF StarIII chipset, and it features a built-in antenna. After building the interface circuit, you will learn how to customize it to display more than 30 standard GPS data types, including latitude, longitude, altitude, velocity, heading, time, and date. Figure 1. GlobalSat EM-406A GPS Receiver.

2 Like most GPS receivers, the EM-406A conforms to the standard NEMA SiRF interface protocol, so the code you write in this project will work with most other GPS receivers. Challenge 1: Understanding GPS Data In order to better understand the GPS data format, you will first connect your GPS receiver directly to your computer through the Machine Science programming cable. GPS receivers are capable of transmitting a large volume of data, which can be difficult to see on a small LCD screen. By viewing the data on a computer monitor, you will be able to learn about the different GPS data streams and data types. Collecting Your Components In order to connect your GPS receiver to your computer, you will need the following components: Part Quantity Description A 1 GlobalSat EM-406A GPS Engine B 1 Connector harness (6-pin) C 1 Bent header (6-pin) D 1 Bent header (4-pin) Connecting the Receiver to Your Computer Using Figure 2 as a guide, connect the GPS receiver to the programming board, which will link it to your computer. To avoid intefering with the microcontroller, build this circuit in an area of the board away from the chip. Figure 3 shows one way to lay out this circuit. To orient the GPS unit properly, note the position of the grey wire in Figure 3.

3 Figure 2. Connecting the GPS receiver to the computer (schematic). Figure 3. Connecting the GPS receiver to the computer (photo). Setting up a Terminal Emulator Connected as shown in Figure 2, the GPS receiver will send satellite data to your computer s COM port. To view the data, you will need to run a terminal emulator--a program that emulates an older-style text-only computer terminal. Depending on your operating system, your computer may already have a terminal emulator, or you may need to download one from the Internet: Windows (Vista): TeraTerm Pro Web is available here: Windows (pre-vista): HyperTerminal is available in the Start menu under Programs > Accessories > Communication.

4 Macintosh: ZTerm comes pre-installed with OSX and above. Linux: CuteCom can be found at: The instructions in this section are for installing TeraTerm Pro Web, but should give you enough information to help you set up any of the other programs listed above. 1. Determine which COM port your Machine Science programming board is using by viewing the Options menu in the Programming Window. 2. Download TeraTerm Pro Web from 3. Unzip the.zip file to a convenient location on your hard drive. 4. Open the folder and double click on the file ttermpro.exe. You will see a dialog box like the one shown in Figure 4. Figure 4. New connection dialog box. 5. Select Serial and the COM port being used by your Machine Science programming board. You should now see unintelligible characters scrolling across and down your screen as shown in Figure 5.

5 Figure 5. TeraTerm Window. 6. The reason you see a jumble of characters is that you need to set the baud rate in baud rate in your terminal program to match the baud rate of the GPS receiver. Select Serial port... from the Setup menu. You should now see a dialog box like the one shown in Figure 6. Figure 6. Serial port setup. 7. Select 4800 for the baud rate. You should now see lines of GPS data being updated every second on your screen, as shown in Figure 7.

6 Understanding GPS Data Figure 7. Terminal emulator. GPS receivers are capable of transmitting eight types of GPS data streams, shown below: Option GGA GLL GSA GSV MSS RMC VTG ZDA Time and position data Latitude, longitude, time and status Description GPS receiver operating mode, satellites used in the position solution, and DOP values The number of GPS satellites in view, satellite ID numbers, elevation, and azimuth Signal-to-noise ratio, signal strength, frequency, and bit rate from a radio-beacon, receiver Time, date, position, course and speed data Course and speed information relative to the ground Pulse Per Second (PPS) timing message Referring to Figure 7 (or your terminal emulator, if it is still running on your computer), you should see four types of GPS data streams: GGA, RMC, GSV, and GSA. These are the four default data streams that are transmitted by the GPS receiver. Each stream is transmitted on a single line. An example of a GGA data stream is shown below. $GPGGA, , ,N, ,W,1,07,1.0,9.0,M,,,,0000*18

7 Each GPS data stream can have up to sixteen GPS data fields. The data fields are separated by commas, as shown in the sample above. Table 3 below details the data fields contained in the GGA data stream. Name Example Description Message ID $GPGGA GGA protocol header UTC Time hhmmss.sss (h=hours, m=minutes, s=seconds) Latitude ddm.mmmm (d=degrees, m=minutes) N/S Indicator N N=north or S=south Longitude dddmm.mmmm (d=degrees, m=minutes) E/W Indicator W E=east or W=west Position Fix Indicator 1 0=fix not valid, 1,2, or 3= fix valid Satellites Used 07 Range 0 to 12 HDOP 1.0 Horizontal dilution of precision MSL Altitude 9.0 Meters above sea level Units M Meters Geoid Separation Units Age of Diff. Corr. Diff. Ref. Station ID 0000 Meters Meters Seconds Checksum *18 Check for valid data <CR><LF> Carriage return and line feed indicating end of message Don't worry about understanding all of the GPS data types shown in this table. The ones of greatest interest to you will probably be time, latitude, longitude, and altitude. In the next challenge, you will learn how to display this information in a meaningful way on your LCD. Challenge 2: Controlling the Receiver In this challenge, you will construct a circuit connecting the EM-406A to the Atmega Board and program the chip to display readable GPS data on the LCD.

8 Collecting Your Components In order to build the circuit, you will need the following components: Part Quantity Description A 1 GlobalSat EM-406A B 1 Connector harness (6-pin) C 1 Bent header (6-pin) D 1 Atmega Board Connecting the Receiver to the Chip Using the schematic in Figure 8 as a guide, add your components to the breadboard. Figure 9 shows an example of a completed board for this circuit. Since the leads on the GPS receiver are not labeled, you may need to examine the picture to make the correct connections. Figure 8. Connecting GPS receiver to the Atmega168 (schematic).

9 Figure 9. Connecting GPS receiver to the Atmega168 (photo). Displaying Raw GPS Data on the LCD The following code will allow you to begin receiving data from your GPS receiver and displaying the information on your LCD. In this first step, you will not be parsing the data from your receiver. As you learned in the previous challenge, GPS receivers can produce a lot of data, so your tiny LCD will quickly fill up with a lot of numbers, letters, and symbols. While you will not be able to read the data, it will indicate that your circuit is working properly. (It also looks kind of cool!) IMPORTANT NOTE: The GPS receiver and the Machine Science programming board both use the same pin for transmitting data to the Atmega168. You must disconnect the wire linking the GPS pin 4 to the Port D0 of the Atmega168 before downloading your code. You can immediately reconnect this wire once the code has been downloaded. 1. #include "mxapi.h" 2. #include "usart.h" 3. #include "lcd.h" int main (void) 6. { 7. char gps_characters; //Declare a variable for storing GPS characters

10 8. usart_init(4800); //Initialize the USART to 4800 baud 9. lcd_init(); //Initialize your LCD 10. while(1==1) //Start an infinite loop 11. { 12. gps_characters=usart_read(); //Read each character from the GPS 13. lcd_character(gps_characters); //Display each character on the LCD 14. } 15. } Parsing the Raw GPS Data In order to better view the data on your LCD, you will need to parse the raw data stream from the GPS receiver. In Figure 7, you can see that the terminal emulator on your computer displays each data stream on a separate line. It does this by checking for a carriage return and line feed, the ASCII characters 13 and 10, at the end of each data stream (as shown in the last rows of Table 3). When the terminal emulator finds these two characters, it starts the next data set on a new line, making the data much easier to read than if it were simply a continuous stream. The microcontroller has no built-in ability to parse data. As you may have seen in the previous exercise, the carriage return and line feeds at the end of each data string are displayed on the LCD as more data. As a result, using the previous code, the GPS data was displayed on the LCD in long stream without easily discernible breaks. The next code sample introduces breaks after each line of data, just like the terminal emulator did. It checks continuously for a line feed character (ASCII 10), and when it gets one, it repositions LCD's cursor at the start of the first line before displaying the next character. The data on the display remains somewhat difficult to read, since all of the different GPS data streams are displayed, but it is easier to pick out patterns in the data. 1. #include "mxapi.h" 2. #include "usart.h" 3. #include "lcd.h" int main (void) 6. { 7. char gps_characters; //Declare a variable to store GPS characters 8. usart_init(4800); //Initialize the USART to 4800 baud 9. lcd_init(); //Initialize the LCD 10. while(1==1) //Start an infinite loop

11 11. { 12. gps_characters = usart_read(); //Read each character from the GPS 13. lcd_character(gps_characters); //Display each character on the LCD 14. if (gps_characters == 10) //Check for the line feed (ASCII 10) character 15. { 16. lcd_instruction( FIRST_LINE ); //Move the cursor to the first line 17. } 18. } 19. } Programming Challenge Modify your code so that each line new line scrolls up in the same way that it displays on your computer monitor. This is difficult! Selecting GPS Output Streams The following code turns on and off specific GPS data streams. Remember that the receiver is capable of transmitting any or all of the eight different GPS streams listed in Table 2 at a rate of up to 100 Hertz each. In order to display the data on the LCD, it is best to turn on only one stream and turn off the rest, using a function called gps_setdata. This function takes two arguments: the first argument selects the GPS stream that you want to turn on or off; the second argument determines how frequently (in Hertz) the GPS receiver transmits the stream. A value of 0 turns off the stream entirely, while a value of 1 to 99 specifies a transmission frequency of 1 to 99 times a second. 1. #include "mxapi.h" 2. #include "usart.h" 3. #include "lcd.h" 4. #include "gps.h" int main (void) 7. { 8. char gps_characters; //Declare a variable to store GPS character 9. usart_init(4800); //Initialize the USART to 4800 baud 10. lcd_init(); //Initialize the LCD 11. delay_ms(2000); //Delay while GPS receiver warms up 12.

12 13. /* Turn off all NMEA formats except the one you want to see. */ 14. gps_setdata(nmea_gga, 1); //Turn on GGA format at 1 Hertz 15. gps_setdata(nmea_gsa, 0); //Turn off GSA format (0 Hertz) 16. gps_setdata(nmea_gsv, 0); //Turn off GSV format (0 Hertz) 17. gps_setdata(nmea_rmc, 0); //Turn off RMC format (0 Hertz) 18. while(1==1) //Run the following code in an infinite loop 19. { 20. gps_characters = usart_read(); //Read each character from the GPS 21. lcd_character(gps_characters); //Display each character on the LCD 22. if (gps_characters==10) //Check for the line feed (ASCII 10) character 23. { 24. lcd_instruction(first_line); //Move the cursor to the first line 25. } 26. } 27. } You do not need to select a GPS data stream every time you program the device. Once a stream is selected, the receiver displays only that stream until the gps_setdata function is called again. Programming Challenge Try changing the GPS stream displayed by your GPS receiver. Try changing how often the GPS stream is updated. Displaying Specific GPS Data Elements With the following code, you can display specific GPS data elements, such as time, latitude, longitude, and altitude, from the selected data stream. To simplify matters, every GPS data stream is parsed in the background by a function within the gps.h header file. The parsed data is stored in an array called gps_data[ ], with each value in the array representing a different GPS data element. You can reference any element in the gps_data[ ] array in your code.

13 For example, with the GGA data stream, selected a line of data might look like this: $GPGGA, , ,N, ,W,1,07,1.0,9.0,M,,,,0000*18 In this instance, gps_data[0] would equal $GPGGA, gps_data[1] would equal , gps_data[2] would equal N, and so on. The following table shows the gps_data[] values for some of the more useful data elements in the GGA, RMC, and VTC data streams. GPS Data Example Units Format GGA RBC VTG Message ID $GPGGA Latitude Degrees and minutes ddmm.mmmm 2 3 North/South N 3 4 Longitude Degrees and minutes dddmm.mmmm 4 5 East/West W 5 6 Altitude 9.0 Meters 9 Speed 0.2 Kilometers / hour Course Degrees 8 1 Time hhmmss.ss 1 1 Date ddmmyy 9 Satellites 07 0 to 12 7 This program uses the chip's internal interrupts, which allow the microcontroller to execute multiple tasks at the same time. A few new statements are added to enable and initialize the interrupts. 1. #include "mxapi.h" 2. #include "usart.h" 3. #include "lcd.h" 4. #include "gps.h" int main (void) 7. { 8. usart_init(4800); //Initialize the USART to 4800 baud 7

14 9. usart_interrupt_rx(enable); //Enable interrupts for the USART 10. sei(); //Turn on interrupts 11. lcd_init(); //Initialize the LCD while(1==1) //Start an infinite loop 14. { 15. lcd_instruction(first_line); //Move the cursor to the first line 16. lcd_instruction(clear); //Clear the LCD 17. lcd_text(gps_data[2]); //Display the 3rd value in the selected data stream 18. } 19. } Formatting GPS Data on Two Lines The last code example in this project will display and format multiple GPS data fields on both lines of the LCD. The added functions in this example should be familiar to you from other Machine Science projects. 1. #include "mxapi.h" 2. #include "usart.h" 3. #include "lcd.h" 4. #include "gps.h" int main (void) 7. { 8. usart_init(4800); //Initialize the Atmega168s USART to 4800 baud 9. usart_interrupt_rx(enable); //Enable interrupts for the USART 10. sei(); //Turn on interrupts 11. lcd_init(); //Initialize your LCD while(1) //Run the following code in an infinite loop 14. { 15. lcd_instruction(first_line); //Move the cursor to the first line 16. lcd_text(gps_data[2]); //Display value of third data field 17. lcd_character(':'); //Display ':' character

15 18. lcd_text(gps_data[3]); //Display value of fourth data field lcd_instruction(second_line); //Move the curse to the first line 21. lcd_text(gps_data[4]); //Display value of fifth data field 22. lcd_character(':'); //Display ':' character 23. lcd_text(gps_data[5]); //Display value of sixth data field 24. lcdblankline(); //Send blanks to clear the lines 25. } 26. }

MP3 Player. Add an MP3 module to the board and design a user interface. Overview Challenge 1: Control the MP3 Module with Your Computer

MP3 Player. Add an MP3 module to the board and design a user interface. Overview Challenge 1: Control the MP3 Module with Your Computer MP3 Player Add an MP3 module to the board and design a user interface. Contents Overview Challenge 1: Control the MP3 Module with Your Computer o Collecting Your Components o Stocking the USB Flash Drive

More information

Datasheet of stand-alone GPS smart antenna module, LS20057

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

More information

NMEA reference manual

NMEA reference manual NMEA reference manual This document contains proprietary information to SiRF Technology, Inc. and has been reproduced with permission of SiRF Technology Holdings, Inc. Contents 1. NMEA output messages...4

More information

NMEA Reference Manual

NMEA Reference Manual NMEA Reference Manual SiRF Technology, Inc. 217 Devcon Drive San Jose, CA 95112 U.S.A. Phone: +1 (408) 467-0410 Fax: +1 (408) 467-0420 www.sirf.com Part Number: 1050-0042 Revision 2.2, November 2008 SiRF,

More information

GPS Engine Board ET-332

GPS Engine Board ET-332 GPS Engine Board ET-332 Globalsat Technology Corporation 16F., No. 186, Jian-Yi Road, Chung-Ho City, Taipei Hsien 235, Taiwan Tel: 886-2-8226-3799/ Fax: 886-2-8226-3899 service@globalsat.com.tw www.globalsat.com.tw

More information

SkyTraq Venus 6 GPS Module ST22

SkyTraq Venus 6 GPS Module ST22 GPS Module ST22 Datasheet Revision History Revision Change V1.0 Initial version V1.1 Addition of standby supply current V1.2 Additional information about 1PPS signal. Table of module options V1.3 Additional

More information

Data Sheet. Gmm u1 GPS Module GR9804-DS000B. GlobalTop Technology Inc. Revision: V0B

Data Sheet. Gmm u1 GPS Module GR9804-DS000B. GlobalTop Technology Inc. Revision: V0B GR9804-DS000B GlobalTop Technology Inc. Gmm u1 GPS Module Data Sheet Revision: V0B Data Sheet The Gmm-u1 is a stand-alone GPS module with ultra-high sensitivity (- 165dBm) in an ultra-slim form factor

More information

Datasheet of stand-alone GPS smart antenna module, LS20229

Datasheet of stand-alone GPS smart antenna module, LS20229 886-2-8698-3699 www.locosystech.com Product name LS20229 series Description Stand-alone GPS smart antenna module/ss4,4800bps Version 1.0 Datasheet of stand-alone GPS smart antenna module, LS20229 1 Introduction

More information

PPS usable by timing applications via serial port emulation

PPS usable by timing applications via serial port emulation Timing & Navigation Module * PPS usable by timing applications via serial port emulation * The Pulse Per Second (PPS) is an electrical signal that very precisely indicates the start of a second. The z050

More information

Note: The PmodGPS arrives with the RTCM feature inactive, to enable RTCM capabilities users should contact GlobalTop at: www.gtop-tech.com.

Note: The PmodGPS arrives with the RTCM feature inactive, to enable RTCM capabilities users should contact GlobalTop at: www.gtop-tech.com. 1300 Henley Court Pullman, W 99163 509.334.6306 www.digilentinc.com PmodGPS Reference Manual Revised pril 12, 2016 This manual applies to the PmodGPS rev. Overview The PmodGPS can add satellite positioning

More information

Datasheet of GPS smart antenna module, NL-50xE Sirf3 series

Datasheet of GPS smart antenna module, NL-50xE Sirf3 series Product name Description Version NL-502EUSB GPS smart antenna module/usb,9600bps,30x30mm NL-501ETTL GPS smart antenna module/ttl,9600bps,30x30mm 1.1 NL-500ERS GPS smart antenna module/rs232,9600bps,30x30mm

More information

GPS Module DataSheet

GPS Module DataSheet SkyNav SKM58 GPS Module DataSheet Name: Ultra High Sensitivity and The Smart Antenna GPS Module Model NO.: SKM58 Revision: 001 Revision History: Revision Description Approved Date 001 Initial Release to

More information

DG-100 Data Logger User Manual. Version 1.2

DG-100 Data Logger User Manual. Version 1.2 DG-100 Data Logger User Manual Version 1.2 DG-100 page 2 Table of Content 1 Introduction and Features... 3 Introduction...3 Features...4 2 Specifications... 5 System specification...5 GPS specification...6

More information

GM862-GPS, GE863-GPS - GPS AT COMMANDS SET GM862-GPS, GE863-GPS 80278ST10021a Rev. 0-21/04/06

GM862-GPS, GE863-GPS - GPS AT COMMANDS SET GM862-GPS, GE863-GPS 80278ST10021a Rev. 0-21/04/06 GM862-GPS, GE863-GPS - GPS AT COMMANDS SET GM862-GPS, GE863-GPS Contents 1 Introduction... 3 1.1 Scope of the document...3 1.2 Abbreviation symbols...3 1.3 APPLICABLE DOCUMENTS...3 1.4 AT Command...4 1.4.1

More information

NMEA Reference Manual

NMEA Reference Manual NMEA Reference Manual SiRF Technology, Inc. 148 East Brokaw Road San Jose, CA 95112 U.S.A. Phone: +1 (408) 467-0410 Fax: +1 (408) 467-0420 www.sirf.com 1050-0042 January 2005, Revision 1.3 SiRF, SiRFstar,

More information

International Journal of Research in Advent Technology Available Online at: http://www.ijrat.org

International Journal of Research in Advent Technology Available Online at: http://www.ijrat.org DESIGN AND IMPLEMENTATION OF A GPS RECEIVER USING 8051 MICROCONTROLLER Garima Jain 1, Nasreen Noorani 2, Vishal Badole 3 1 2 3 Electronics & Communication Department 1 2 3 Acropolis Technical Campus, Indore,

More information

The Gotop GT-1613-MTR is a complete GPS engine module that features super

The Gotop GT-1613-MTR is a complete GPS engine module that features super www.gotop-zzu.com GOTOP GT-1613-MTR Ultra High Sensitivity and Low Power GPS Receiver Module General Description The Gotop GT-1613-MTR is a complete GPS engine module that features super sensitivity, ultra

More information

MoTeC USA GPS. Part # M GPS BL Available in 10 Hz or 20 Hz. USER MANUAL Version 1.4

MoTeC USA GPS. Part # M GPS BL Available in 10 Hz or 20 Hz. USER MANUAL Version 1.4 MoTeC USA GPS Part # M GPS BL Available in 10 Hz or 20 Hz. USER MANUAL Version 1.4 MoTeC USA GPS Copyright Motec Systems USA 2008 The information in this document is subject to change without notice. While

More information

Datasheet of stand-alone GPS smart antenna module with magnetic sensor, LS20126

Datasheet of stand-alone GPS smart antenna module with magnetic sensor, LS20126 Product name Description Version LS20126 Stand-alone GPS smart antenna module with magnetic sensor, 9600BPS Datasheet of stand-alone GPS smart antenna module with magnetic sensor, LS20126 1.02 1 Introduction

More information

SATLAB Field Tools. User Guide for SL55

SATLAB Field Tools. User Guide for SL55 SATLAB Field Tools User Guide for SL55 Date Update No 2013 / April 1 Page1 Contents 1. Bluetooth Connection 3-9 2. Static Data Collection 10-11 3. Register Code Access 12-13 4. NMEA Data Management 14-16

More information

SAH2217 Enhanced ATHEROS GPS Module with ultra high sensitivity and antenna open/short detection/protection

SAH2217 Enhanced ATHEROS GPS Module with ultra high sensitivity and antenna open/short detection/protection SAH2217 Enhanced ATHEROS GPS Module with ultra high sensitivity and antenna open/short detection/protection 20F-8, No.107, Sec 1,Jhongshan Rd. Sinjhuang City, Taipei County 242, Taiwan Phone: +886-2-8522-7628

More information

GPS-Receiver JP3 Description

GPS-Receiver JP3 Description This document is available at HTTP://WWW.FALCOM.DE/. GPS-Receiver JP3 Description Version 1.06 Contents 0 INTRODUCTION...3 0.1 GENERAL... 3 0.2 USED ABBREVIATIONS... 3 0.3 RELATED DOCUMENTS... 4 1 SECURITY...5

More information

GST-1 Troubleshooting FAQ

GST-1 Troubleshooting FAQ GST-1 Troubleshooting FAQ General: This FAQ addresses several common problems encountered and address the Windows 2000 associated interface problem. GST-1 s currently being shipped have been re-programmed

More information

Onyx RFG-2000 GPS Receiver

Onyx RFG-2000 GPS Receiver Onyx RFG-2000 GPS Receiver User Manual 1 RFG-2000 Ver1.0c, April/2/04 Contents WHAT IS ONYX, RFG-2000... 3 WHAT IS INSIDE... 3 WHAT IS GPS... 3 WHAT S INSIDE THE PACKAGE... 4 START-UP FOR RFG-2000 (PDA)...

More information

How to setup a serial Bluetooth adapter Master Guide

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

More information

User s Manual of BTGP-38KM Bluetooth GPS Data Logger V1.0

User s Manual of BTGP-38KM Bluetooth GPS Data Logger V1.0 User s Manual of BTGP-38KM Bluetooth GPS Data Logger V1.0 I Instruction to Product 1. Summary BTGP-38KM, a high-tech product combines the advanced Bluetooth technology and GPS technology. Through, Bluetooth

More information

Modbus and ION Technology

Modbus and ION Technology 70072-0104-14 TECHNICAL 06/2009 Modbus and ION Technology Modicon Modbus is a communications protocol widely used in process control industries such as manufacturing. PowerLogic ION meters are compatible

More information

K.Prasanna NIT Rourkela,India Summer Internship NUS

K.Prasanna NIT Rourkela,India Summer Internship NUS K.Prasanna NIT Rourkela,India Summer Internship NUS LOCALIZATION Vehicle localization is an important topic as it finds its application in a multitude of fields like autonomous navigation and tracking

More information

Serial Communications

Serial Communications April 2014 7 Serial Communications Objectives - To be familiar with the USART (RS-232) protocol. - To be able to transfer data from PIC-PC, PC-PIC and PIC-PIC. - To test serial communications with virtual

More information

Configuring Serial Terminal Emulation Programs

Configuring Serial Terminal Emulation Programs Configuring Serial Terminal Emulation Programs Table of Contents Configuring Serial Terminal Emulation Programs: An Introduction... 3 HyperTerminal... 3 Configuring HyperTerminal... 3 Tera Term Pro...

More information

USB GPS User s Guide (WIN)

USB GPS User s Guide (WIN) USB GPS User s Guide (WIN) USB GPS Receiver BU-303 (SiRF II) BU-353 (SiRF III) (Information on installation of the USB driver contained in this document is also applicable to our USB cable set #BR305-USB)

More information

PM1122 INT DIGITAL INTERFACE REMOTE

PM1122 INT DIGITAL INTERFACE REMOTE PM1122 INT DIGITAL INTERFACE REMOTE PM1122 INT front panel description: 1. Clear wireless remotes knob: push this button for more than 2 seconds to clear the list of all assigned wireless remote settings

More information

NL-464US User Manual (60122)

NL-464US User Manual (60122) NL-464US User Manual (60122) 1. Introduction The NL-464US is a USB GPS receiver with internal antenna and a 20 channel Sirf3 GPS chipset. The USB interface enables the connection to a notebook, UMPC, tablet-

More information

Trimble R8 Base and Rover Quick Setup Guide. Inland GPS Inc.

Trimble R8 Base and Rover Quick Setup Guide. Inland GPS Inc. Trimble R8 Base and Rover Quick Setup Guide Inland GPS Inc. Setting up the GPS Base Equipment Hardware First Find the best, most advantageous secure place to setup the GPS base equipment. Look for a high

More information

Instructions on How to Use HyperTerminal to Test Serial Ports ...

Instructions on How to Use HyperTerminal to Test Serial Ports ... Print Date: 04.03.2010 Testing Serial Cards Instructions on How to Use HyperTerminal to Test Serial Ports... Brain Boxes Limited, Unit 3C, Wavertree Boulevard South, Wavertree Technology Park, Liverpool,

More information

Parallax Serial LCD 2 rows x 16 characters Non-backlit (#27976) 2 rows x 16 characters Backlit (#27977) 4 rows x 20 characters Backlit (#27979)

Parallax Serial LCD 2 rows x 16 characters Non-backlit (#27976) 2 rows x 16 characters Backlit (#27977) 4 rows x 20 characters Backlit (#27979) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

More information

An Arduino Controlled GPS Corrected VFO

An Arduino Controlled GPS Corrected VFO Gene Marcus, W3PM/GM4YRE 3 Wickerberry Lane, Madison, AL 376: w3pm@arrl.net An Arduino Controlled GPS Corrected VFO A VFO that provides to. MHz signals on two independent outputs. Use it as a stand alone

More information

GPS Receiver. User s Guide. May. 28, 2003

GPS Receiver. User s Guide. May. 28, 2003 GM-210 GPS Receiver User s Guide May. 28, 2003 HOLUX Technology,.Inc 8F-11, 26, Tai Yuen St., Chu Pei, Hsin Chu, Taiwan Phone: +886-3-5526268 Fax: +886-3-5526108 E-Mail: info@holux.com.tw Web: www.holux.com.tw

More information

Projet 15. Annexes. Réalisation d'un logiciel de mesure d'éclairement. Réalisé par Thomas Roncaglia pour la société ERIBAT.

Projet 15. Annexes. Réalisation d'un logiciel de mesure d'éclairement. Réalisé par Thomas Roncaglia pour la société ERIBAT. Projet 15 Réalisation d'un logiciel de mesure d'éclairement. Réalisé par Thomas Roncaglia pour la société ERIBAT. Annexes Enseignant responsable : Patrice Bellot Master 1 Informatique 2009 2010 Table de

More information

Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System

Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System ECU DB9 USB 20-060_A.DOC Page 1 of 18 9/15/2009 2009 Precision Airmotive LLC This publication may not be copied

More information

TP- 051 GPS RECEIVER

TP- 051 GPS RECEIVER TP- 051 GPS RECEIVER CONTENTS 1. Overview 3 2. Features 3 3. The advantages of TP-051 GPS Receiver 4 4. The appearance and structures 4 5. Applications 5 6. Installation steps for the TP-051 GPS Receiver

More information

Time Synchronization & Timekeeping

Time Synchronization & Timekeeping 70072-0111-14 TECHNICAL NOTE 06/2009 Time Synchronization & Timekeeping Time synchronization lets you synchronize the internal clocks of all networked PowerLogic ION meters and devices. Once synchronized,

More information

GPS Selection Guide. EZ Guide 500 & 250 Trimble #

GPS Selection Guide. EZ Guide 500 & 250 Trimble # GPS Selection Guide Trimble FMX 1000 & Case IH FM 1000 Precision Parts Ref Doc Trimble CFX 750 & Case IH FM 750 750 1000 with Hydraulic Steer - Trimble Aftermarket 725599 955443 955439 with Hydraulic Steer

More information

CENTRONICS interface and Parallel Printer Port LPT

CENTRONICS interface and Parallel Printer Port LPT Course on BASCOM 8051 - (37) Theoretic/Practical course on BASCOM 8051 Programming. Author: DAMINO Salvatore. CENTRONICS interface and Parallel Printer Port LPT The Parallel Port, well known as LPT from

More information

Technical Manual. For use with Caller ID signaling types: Belcore 202, British Telecom, & ETSI

Technical Manual. For use with Caller ID signaling types: Belcore 202, British Telecom, & ETSI Technical Manual For use with Caller ID signaling types: Belcore 202, British Telecom, & ETSI Caller ID.com WHOZZ CALLING? POS 2 Caller ID Monitoring Unit Technical Manual For use with Caller ID signaling

More information

GPS Tracking Simulation by Path Replaying G. Rajendran #1, Dr. M. Arthanari #2, M. Sivakumar #3 #1 Assistant Professor of Computer Science,

GPS Tracking Simulation by Path Replaying G. Rajendran #1, Dr. M. Arthanari #2, M. Sivakumar #3 #1 Assistant Professor of Computer Science, GPS Tracking Simulation by Path Replaying G. Rajendran #1, Dr. M. Arthanari #2, M. Sivakumar #3 #1 Assistant Professor of Computer Science, Government Arts College (Autonomous), Salem-636007,India. #2

More information

CM HOST CM CardTransporter Fuel Communication and Management Software 10.10.06 Software version up to 3.1

CM HOST CM CardTransporter Fuel Communication and Management Software 10.10.06 Software version up to 3.1 CM HOST CM CardTransporter Fuel Communication and Management Software 10.10.06 Software version up to 3.1 CM Host Manual For CardMaster Fuel Control www.cardlockvending.com customers call 888-487-5040

More information

SURVEY PRO. GPS Quick Start Guide

SURVEY PRO. GPS Quick Start Guide SURVEY PRO GPS Quick Start Guide ii Table of Contents Before You Leave the Office...1 Survey Method: RTK or Post Processing...2 Receiver Setup...2 Receiver Settings...3 RTK Data Collection and Stake Out...4

More information

MT3339 PC Tool Operation Manual

MT3339 PC Tool Operation Manual GlobalTop Technology Inc. MT3339 PC Tool Operation Manual Technial Document Revision: 0.1.0 MT3339 PC Tool for MT3339 Based GPS Modules prior permission of GlobalTop Tech Inc. Specifications subject to

More information

Technical Article Developing Software for the CN3 Integrated GPS Receiver

Technical Article Developing Software for the CN3 Integrated GPS Receiver Technical Article Developing Software for the CN3 Integrated GPS Receiver 1 Intermec Technologies Table of Contents INTRODUCTION... 3 AN OVERVIEW OF GPS TECHNOLOGY... 3 What is GPS?... 3 How GPS works...

More information

Modbus and ION Technology

Modbus and ION Technology Modbus and ION Technology Modicon Modbus is a communications protocol widely used in process control industries such as manufacturing. ACCESS meters are compatible with Modbus networks as both slaves and

More information

Current Cost Data Cable User Guide. Installing and configuring the data cable

Current Cost Data Cable User Guide. Installing and configuring the data cable Current Cost Data Cable User Guide Installing and configuring the data cable Contents About the Data Cable... 3 Data Cable Installation Steps... 3 Post Installation Checks... 3 So the driver is installed,

More information

The Answer to the 14 Most Frequently Asked Modbus Questions

The Answer to the 14 Most Frequently Asked Modbus Questions Modbus Frequently Asked Questions WP-34-REV0-0609-1/7 The Answer to the 14 Most Frequently Asked Modbus Questions Exactly what is Modbus? Modbus is an open serial communications protocol widely used in

More information

RS-232 Communications Using BobCAD-CAM. RS-232 Introduction

RS-232 Communications Using BobCAD-CAM. RS-232 Introduction RS-232 Introduction Rs-232 is a method used for transferring programs to and from the CNC machine controller using a serial cable. BobCAD-CAM includes software for both sending and receiving and running

More information

TI GPS PPS Timing Application Note

TI GPS PPS Timing Application Note Application Note Version 0.6 January 2012 1 Contents Table of Contents 1 INTRODUCTION... 3 2 1PPS CHARACTERISTICS... 3 3 TEST SETUP... 4 4 PPS TEST RESULTS... 6 Figures Figure 1 - Simplified GPS Receiver

More information

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

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

More information

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

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

More information

Navilock NL-442U Sirf Star IV GPS USB Receiver User Manual (61994)

Navilock NL-442U Sirf Star IV GPS USB Receiver User Manual (61994) Navilock NL-442U Sirf Star IV GPS USB Receiver User Manual (61994) 1. Introduction The NL-442U is a USB GPS receiver with internal antenna and a 48 channel Sirf Star IV GPS chipset. The USB interface enables

More information

Technical Bulletin. Teledyne PDS Clock Synchronization Considerations. Version 1.2

Technical Bulletin. Teledyne PDS Clock Synchronization Considerations. Version 1.2 Teledyne PDS Clock Synchronization Considerations Version 1.2 TELEDYNE RESON B.V. Stuttgartstraat 42-44 3047 AS Rotterdam The Netherlands Tel.: +31 (0)10 245 15 00 www.teledyne-reson.com Dated: 01-05-2015

More information

Cypress CY7C64225 USB-to-UART Setup Guide Version 1.3

Cypress CY7C64225 USB-to-UART Setup Guide Version 1.3 Cypress CY7C64225 USB-to-UART Setup Guide Version 1.3 Overview The Cypress CY7C64225 is a fully integrated USB-to-UART Bridge that provides a simple way of updating RS-232 based devices to USB with a minimal

More information

8051 MICROCONTROLLER COURSE

8051 MICROCONTROLLER COURSE 8051 MICROCONTROLLER COURSE Objective: 1. Familiarization with different types of Microcontroller 2. To know 8051 microcontroller in detail 3. Programming and Interfacing 8051 microcontroller Prerequisites:

More information

Waspmote. Quickstart Guide

Waspmote. Quickstart Guide Waspmote Quickstart Guide Index Document version: v4.3-11/2014 Libelium Comunicaciones Distribuidas S.L. INDEX 1. Introduction... 3 2. General and safety information... 4 3. Waspmote s Hardware Setup...

More information

Zodiac Serial Data Interface Specification

Zodiac Serial Data Interface Specification Zodiac Serial Data Interface Specification Order No. GPS-25 September 24, 1996 Revision 11 Information to the user The user of this device is cautioned that changes or modifications not expressly approved

More information

LDG Electronics External Meter Serial Communications Protocol Specification

LDG Electronics External Meter Serial Communications Protocol Specification M1000 METER PROTOCOL SPECIFICATION MANUAL REV A LDG Electronics External Meter Serial Communications Protocol Specification LDG Electronics 1445 Parran Road St. Leonard MD 20685-2903 USA Phone: 410-586-2177

More information

Features Reference. About Unified Communication System. Before Using This Machine. Starting a Meeting. What You Can Do During the Meeting

Features Reference. About Unified Communication System. Before Using This Machine. Starting a Meeting. What You Can Do During the Meeting Features Reference About Unified Communication System Before Using This Machine Starting a Meeting What You Can Do During the Meeting Leaving a Meeting Managing Address Book Changing Network Configuration

More information

USB GPS User s Guide (WIN)

USB GPS User s Guide (WIN) USB GPS User s Guide (WIN) USB GPS Receiver BU-303 (SiRF II) BU-353 (SiRF III) (Information on installation of the USB driver contained in this document is also applicable to our USB cable set #BR305-USB)

More information

Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0

Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0 Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0 Copyright, 1999-2007 Virtual Integrated Design, All rights reserved. 1 Contents: 1. The Main Window. 2. The Port Setup Window. 3.

More information

Bluetooth HC-06 with serial port module Easy guide

Bluetooth HC-06 with serial port module Easy guide 1 Bluetooth HC-06 with serial port module Easy guide This manual consists of 3 parts: PART 1. Overview of Bluetooth HC-06 module with serial port. PART 2. Installing Bluetooth HC-06 module with Bolt 18F2550

More information

To perform Ethernet setup and communication verification, first perform RS232 setup and communication verification:

To perform Ethernet setup and communication verification, first perform RS232 setup and communication verification: PURPOSE Verify that communication is established for the following products programming option (488.2 compliant, SCPI only): DCS - M9C & DCS M130, DLM M9E & DLM-M9G & DLM M130, DHP - M9D, P series, SG,

More information

R4 AIS Transponder System

R4 AIS Transponder System Saab TransponderTech AB R4 AIS Transponder System Troubleshooting Guide This page is intentionally left blank PI-08-195 A Page 2 Copyright The content of this document and its attachments shall remain

More information

Installing the drivers for the Current Cost Data Cable

Installing the drivers for the Current Cost Data Cable Installing the drivers for the Current Cost Data Cable Contents Introduction... 3 About Current Cost Monitors... 3 About the XML... 3 The Historical XML Feed... 3 Forcing the History to Download... 3 About

More information

WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide

WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide WA Manager Alarming System Management Software Windows 98, NT, XP, 2000 User Guide Version 2.1, 4/2010 Disclaimer While every effort has been made to ensure that the information in this guide is accurate

More information

Additional Setup Instructions for Modbus: RTU, ASCII, TCP, Omni & Enron

Additional Setup Instructions for Modbus: RTU, ASCII, TCP, Omni & Enron Additional Setup Instructions for Modbus: RTU, ASCII, TCP, Omni & Enron Copyright 2000 2010 Frontline Test Equipment, Inc. All rights reserved. You may not reproduce, transmit, or store on magnetic media

More information

DIRECT INTERNET DATA. User s Guide

DIRECT INTERNET DATA. User s Guide DIRECT INTERNET DATA User s Guide Iridium Satellite LLC Rev. 2; June 15, 2001 DIRECT INTERNET DATA ------------------------------------------------------------------------------------- TABLE OF CONTENTS

More information

Tech Info Document: PIC16F84A LCD Satellite Antenna Tracking Interface

Tech Info Document: PIC16F84A LCD Satellite Antenna Tracking Interface Fox Delta Amateur Radio Projects & Kits FD- ST3 Tech Info Document: PIC16F84A LCD Satellite Antenna Tracking Interface Preview: When ST1 was made available in kits, hundreds of Radio Amateurs took interest.

More information

di-gps Eco ProFessional PF1-M digital images GPS receiver

di-gps Eco ProFessional PF1-M digital images GPS receiver di-gps Eco ProFessional PF1-M digital images GPS receiver Users Guide Ver 1.1 Please visit our website www.di-gps.com for the latest version of the user guide CONTENTS CONTENTS... 1 INTRODUCTION... 2 WARNING

More information

Global Monitoring + Support

Global Monitoring + Support Use HyperTerminal to access your Global Monitoring Units View and edit configuration settings View live data Download recorded data for use in Excel and other applications HyperTerminal is one of many

More information

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

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

More information

Table of contents. Chapter 1. Introduction... 5. 1.1. Background... 6 1.2. Project Specification... 6 1.3. Plan of Development...

Table of contents. Chapter 1. Introduction... 5. 1.1. Background... 6 1.2. Project Specification... 6 1.3. Plan of Development... Table of contents Chapter 1. Introduction... 5 1.1. Background... 6 1.2. Project Specification... 6 1.3. Plan of Development... 7 Chapter 2. State of the Art... 8 2.1. ZigBee/GPS... 8 2.2. ADS-B... 8 2.3.

More information

Part 1 Product introduction 2. Part 2 Features 3. Part 3 Safety notes 4. Part 4 Quick user s guide 5. Part 5 Operation notes 7

Part 1 Product introduction 2. Part 2 Features 3. Part 3 Safety notes 4. Part 4 Quick user s guide 5. Part 5 Operation notes 7 Table of contents Part 1 Product introduction 2 Part 2 Features 3 Part 3 Safety notes 4 Part 4 Quick user s guide 5 Part 5 Operation notes 7 Part 6 USB driver installation guide 9 Part 7 Connecting with

More information

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Sensors LCD Real Time Clock/ Calendar DC Motors Buzzer LED dimming Relay control I2C-FLEXEL PS2 Keyboards Servo Motors IR Remote Control

More information

Communications Instructions for DOOSAN, FANUC Controls

Communications Instructions for DOOSAN, FANUC Controls Communications Instructions for DOOSAN, FANUC Controls Ethernet & RS-232 for; 18i, 21i, 0ib and c 30i Series & 0id - 1 - Table of Contents Section 1... 3 Ethernet Set-up for the PC... 3 Description...

More information

RIGtalk. Revision 5. Owner s Manual 2012.

RIGtalk. Revision 5. Owner s Manual 2012. RIGtalk Revision 5 Owner s Manual 2012 www.westmountainradio.com 1020 Spring City Drive Waukesha, WI 53186 262-522-6503 sales@westmountainradio.com 2012 West Mountain Radio, All rights reserved. All trademarks

More information

How to setup a serial Bluetooth adapter

How to setup a serial Bluetooth adapter 2U www. How to setup a serial Bluetooth adapter Master Setup Guide For part numbers UCBT232B and UCBT232EXA UPairing the serial Bluetooth adapter with your computer UPairing with Windows 10.. 2U UPairing

More information

Programming and Using the Courier V.Everything Modem for Remote Operation of DDF6000

Programming and Using the Courier V.Everything Modem for Remote Operation of DDF6000 Programming and Using the Courier V.Everything Modem for Remote Operation of DDF6000 1.0 Introduction A Technical Application Note from Doppler System July 5, 1999 Version 3.x of the DDF6000, running version

More information

RS232 Board datasheet

RS232 Board datasheet RS232 Board datasheet Contents 1. About this document 2. General information 3. Board Layout 4. Getting Started 5. Circuit Description Appendix 1 Circuit Diagram Copyright 2004 Matrix Multimedia Limited

More information

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL Rev. D PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL 10 BORIGHT AVENUE, KENILWORTH NEW JERSEY 07033 TELEPHONE: 800-524-0273 FAX: 908-686-9317 TABLE OF CONTENTS Page

More information

Clever Devices IVN GPS Broadcast over Ethernet Interface Control Document

Clever Devices IVN GPS Broadcast over Ethernet Interface Control Document Clever Devices IVN GPS Broadcast over Ethernet Interface Control Document Version 1.0 June 15, 2015 Page 1 of 6 Revision History Date Version Description Author 6/15/2015 1.0 Initial Release G. Glogowski

More information

Connecting your Omega/BetaPAT PLUS to a PC via a USB

Connecting your Omega/BetaPAT PLUS to a PC via a USB Connecting your Omega/BetaPAT PLUS to a PC via a USB Install software Windows XP and below Insert the disc into your computers disc drive and run through the setup wizard. Windows Vista & 7 1. Insert the

More information

RCForb Server Setup. Overview

RCForb Server Setup. Overview RCForb Server Setup Overview The RcForb Server allows you to setup your own remote station on Remote Hams. Three connections to your transceiver are required, and an Internet connection. The first required

More information

Bluetooth to serial HC-06 wireless module

Bluetooth to serial HC-06 wireless module Bluetooth to serial HC-06 wireless module Product Description: 1,Mainstream CSR Bluetooth chip, Bluetooth V2.0 protocol standards 2,serial module operating voltage 3.3V. 3,the baud rate for 1200, 2400,

More information

Exer. 1 Using Handheld GPS for location & recording points

Exer. 1 Using Handheld GPS for location & recording points Exer. 1 Using Handheld GPS for location & recording points Field Objectives: 1. Familiarity with handheld receivers (Trimble Juno) 2. Basic positioning in Lat/Long and UTM 3. Familiarity with changing

More information

DELORME. Getting Started with. Earthmate GPS BT-20. Bluetooth

DELORME. Getting Started with. Earthmate GPS BT-20. Bluetooth DELORME Getting Started with GPS BT-20 Bluetooth Earthmate Table of Contents Overview... 2 Hardware Features... 2 Using the Earthmate GPS BT-20... 3 Charging the Battery... 4 Troubleshooting... 4 Hardware

More information

GPS Fleet Setup Manual. Created by the team at FollowUs. A short documentation to get you started and setup with regards to the GPS Fleet

GPS Fleet Setup Manual. Created by the team at FollowUs. A short documentation to get you started and setup with regards to the GPS Fleet GPS Fleet Setup Manual Created by the team at FollowUs A short documentation to get you started and setup with regards to the GPS Fleet 8/2/2010 CE RoHS compliant A UK product 2 Important please read:-

More information

Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface

Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Application te Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Abstract This

More information

I. DigitalCAT Captioning Software Overview... 1. A. Welcome... 1. B. Acquiring the Captioning Add-On... 1. C. Purpose of this Guide...

I. DigitalCAT Captioning Software Overview... 1. A. Welcome... 1. B. Acquiring the Captioning Add-On... 1. C. Purpose of this Guide... I. DigitalCAT Captioning Software Overview... 1 A. Welcome... 1 B. Acquiring the Captioning Add-On... 1 C. Purpose of this Guide... 1 II. Direct or Dial-Up Connections... 1 A. Direct Connections... 1 B.

More information

Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester

Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester Leonardo Journal of Sciences ISSN 1583-0233 Issue 20, January-June 2012 p. 31-36 Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester Ganesh Sunil NHIVEKAR *, and Ravidra Ramchandra MUDHOLKAR

More information

Using HyperTerminal with Agilent General Purpose Instruments

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

More information

FAQ Sprint 3G/4G USB Modem U300

FAQ Sprint 3G/4G USB Modem U300 Page 1 of 5 FAQ Sprint 3G/4G USB Modem U300 Q: What is the Sprint 3G/4G USB Modem U300? A: The U300 USB modem provides broadband access via Sprint s 3G and 4G networks when plugged into USB port on a PC

More information

Incident Commander Pro Radio-Based Automatic Tracking System

Incident Commander Pro Radio-Based Automatic Tracking System SAR Technology Inc. http://sartechnology.ca sartechnology@telus.net Overview Incident Commander Pro Radio-Based Automatic Tracking System Setup of Kenwood Base Radio, GPS-Portable Radios and Incident Commander

More information