Garmin GPS 16HVS - Receiver Module Instruction Manual

Instruction manual
Hide thumbs Also See for GPS 16HVS - Receiver Module:

Advertisement

Quick Links

Garmin 16-HVS GPS Receiver
Revision: 2/08
C o p y r i g h t
©
2 0 0 3 - 2 0 0 8
C a m p b e l l
S c i e n t i f i c ,
I n c .

Advertisement

Table of Contents
loading

Summary of Contents for Garmin GPS 16HVS - Receiver Module

  • Page 1 Garmin 16-HVS GPS Receiver Revision: 2/08 C o p y r i g h t © 2 0 0 3 - 2 0 0 8 C a m p b e l l S c i e n t i f i c ,...
  • Page 2 Warranty and Assistance The GARMIN 16-HVS GPS RECEIVER is warranted by CAMPBELL SCIENTIFIC, INC. to be free from defects in materials and workmanship under normal use and service for twelve (12) months from date of shipment unless specified otherwise. Batteries have no warranty. CAMPBELL SCIENTIFIC, INC.'s obligation under this warranty is limited to repairing or...
  • Page 3: Table Of Contents

    A.1.2 Reading GPS Data............... A-1 A.1.3 Filters................... A-3 A.1.4 Managing the Data ..............A-3 A.1.5 Program Discussion..............A-4 A.1.6 Troubleshooting ................A-8 B. CR9000(X) Program Example......... B-1 C. Specifications............C-1 C.1 Replacement Parts................C-1 C.2 Specifications ..................C-1 D. Garmin 16-HVS Setups ........... D-1...
  • Page 4 Garmin 16-HVS GPS Receiver Table of Contents Figures 1. Garmin 16-HVS GPS Receiver, Part Number 17215 ........ 1 2. RJ45 with Flying Leads, Part Number 17217..........2 3. CR1000 to GPS16-HVS Using the 17217 Adapter ........2 4. RJ45 to DB9 Serial Adapter, Part Number 17218 ........3 Tables 2-1.
  • Page 5: Overview

    Garmin 16-HVS GPS Receiver FIGURE 1. Garmin 16-HVS GPS Receiver, Part Number 17215 1. Overview The Garmin16-HVS is a complete GPS receiver manufactured by Garmin International, Inc. The Garmin16-HVS has been configured by Campbell Scientific, Inc. (CSI) to work with CSI dataloggers.
  • Page 6 Garmin 16-HVS GPS Receiver If the Garmin16-HVS is to be connected to a computer for setups, an RJ45 to DB9 adapter is needed. TABLE 2-1. Wiring the RJ45 Connector with Flying Leads GPS-Garmin16-HVS Datalogger Connection Function Blue 12 volts Power...
  • Page 7 Garmin 16-HVS GPS Receiver TABLE 2-2. Wiring without the RJ45 Connector (Garmin Wiring) GPS-Garmin16-HVS Color Function Power in, 6.0 to 40 volts DC Black Power ground Yellow Remote power on/off switch, ground for on, float for off Blue Port 1 Data in, RS232 or TTL levels OK...
  • Page 8: Gps Data

    Garmin 16-HVS GPS Receiver 3. GPS Data The Garmin16-HVS has several data formats available. The Garmin16-HVS is configured to output the NEMA $GPGGA time and position string. It is possible to configure the Garmin16-HVS to output other NEMA strings including the $GPVTG track made good and ground speed string. See Appendix D for details.
  • Page 9: Crbasic Programming

    Garmin 16-HVS GPS Receiver Warm Start One satellite in use, time from GPS Real Time Clock (not GPS), no position: $GPGGA,183806.0,,,,,0,01,,,,,,,*7D Valid GPS Fix Three satellites acquired, time and position valid: $GPGGA,005322.0,4147.603,N,11150.978,W,1,03,11.9,00016,M,- 016,M,,*6E If the almanac and ephemeris data are not stored in the non-volatile data, GPS acquisition time is less than 5 minutes.
  • Page 10: Serialclose

    Garmin 16-HVS GPS Receiver 4.1.4 SerialClose The SerialClose instruction is used to close the serial port. Once closed, the SerialOpen command must be used before more data can be read. 4.2 Parsing and Data Storage Options The CR1000, CR3000, CR800, and CR850 can store data as a string or as a number.
  • Page 11 Garmin 16-HVS GPS Receiver alias ParseStr(11) = ALTUNIT alias ParseStr(12) = GIODAL alias ParseStr(13) = GEOUNIT alias ParseStr(14) = AGE alias ParseStr(15) = DIFFREF alias ParseStr(16) = ASTERISK alias ParseStr(17) = CHCKSUM alias ParseStr(18) = CRLF ' Store the ParseStrd elements of the $GPGGA string as ' short strings.
  • Page 12: Troubleshooting

    Garmin 16-HVS GPS Receiver 5. Troubleshooting Testing and evaluation of serial communications is best done by reducing the whole system to small manageable systems. Usually some portions of the whole system are working. The first steps involve finding what is working.
  • Page 13: Cr23X/Cr10X Programs

    Appendix A. CR23X/CR10X Programs A.1 Programming Program instruction 15 (P15) is used to read the NEMA $GPGGA string of time and position data. Each iteration of P15 can either read the numeric fields or read everything. When reading the numeric fields, such as time, latitude, longitude and elevation, P15 requires non-numeric delimiters between data points.
  • Page 14 Appendix A. CR23X/CR10X Programs P15 parameters 4, 5, and 10 are somewhat variable. When using a CR23X, parameter 4 can be set to 05, 06 or 07 depending on what control ports are used. A CR10X can use control ports 1 through 6. Wiring of the communication cable depends on the selection for parameter 4.
  • Page 15: Filters

    Appendix A. CR23X/CR10X Programs A.1.3 Filters Filters can be used to make sure P15 reads the correct data string. Filters also ensure P15 starts to read the string at the beginning of the string. To use a filter, follow P15 with instruction P63 (extended parameters). P63 is used to define the filter.
  • Page 16: Program Discussion

    Appendix A. CR23X/CR10X Programs GPS fix. A better approach is to overwrite the GPS quality location with zero before executing P15. Use P30 to overwrite one input location. If the GPS time is used to set the datalogger clock, the GPS time must be parsed into three input locations: Hour, Minutes, Seconds.
  • Page 17 Appendix A. CR23X/CR10X Programs Additional input locations used in the example program are: 18) Orig_TM, Copy of original time 19) Int1, Place holder for math 20) Hours, formatted hours 21) Minutes, formatted minutes 22) Seconds, formatted seconds 23) remainder, place holder for math Before writing any datalogger code, it’s best to enter all the input locations needed.
  • Page 18 Appendix A. CR23X/CR10X Programs ; Test for valid GPS fix and string read 4: If (X<=>F) (P89) 1: 6 X Loc [ Quality ] 2: 3 >= 3: 1 4: 30 Then Do ; Make a copy of time 5: Z=X (P31) 1: 1 X Loc [ Raw_Time ] 2: 18...
  • Page 19 Appendix A. CR23X/CR10X Programs ; Move decimal left 2 places 13: Z=X*F (P37) 1: 19 X Loc [ Int1 2: 100 3: 19 Z Loc [ Int1 ; Pluck of seconds 14: Z=INT(X) (P45) 1: 19 X Loc [ Int1 2: 22 Z Loc [ Seconds ] ;...
  • Page 20: Troubleshooting

    Appendix A. CR23X/CR10X Programs 25: End (P95) 26: End (P95) End Program This is a blank page. A.1.6 Troubleshooting The first step is to verify that it really does not work. With the Garmin16-HVS running and the datalogger program running, look at the input location for GPS Quality Number.
  • Page 21 Appendix B. CR9000(X) Program Example 'NEMAGGA_Sio4_030805MGW1.CR9 'This program acquires NMEA GGA data from a GPS receiver using the SDM-SIO4. '_____ 'Notes: '(1) Data is acquired from NMEA0183 $GPGGA string: ' Sio4Fields: GGAFields: Definitions: ' f1 GGA(Field1) GGA_UTC_Time of position ' f2,f3 GGA(Field2) Lattitude ' f4,...
  • Page 22: Cr9000(X) Program Example

    Appendix B. CR9000(X) Program Example Alias RawGGAData(6)=Longit_Frac : Units Longit_Int=Deg Alias RawGGAData(7)=LongH_EW Alias RawGGAData(8)=GPSQuality Alias RawGGAData(9)=Satilites Alias RawGGAData(10)=HDOP Alias RawGGAData(11)=Altitude : Units Altitude=Meters DataTable(GPSData,True,-1) DataInterval(0,0,0,0) Sample(ElevenGGAValues,RawGGAData(),IEEE4) EndTable '_________ BeginProg '............'Configure SDM-Sio4 Port#2 for communications with GPS port: SIO4(NotUsed,OneRep,Sio4Address0,Port2,Sio4COMSetUpCmd,Port2ComCode,UnusedParameter,NoValues,U nityMultiplier,NoOffset) Delay(100,mSec) '........
  • Page 23: Specifications

    Appendix C. Specifications C.1 Replacement Parts CSI part number Description 17215 Garmin16-HVS GPS receiver w/antenna, 15 ft cable 17212 Garmin16-HVS magnetic mount 17217 Garmin16-HVS RJ45 interface cable w/pigtails, 8 inch 17218 Garmin16-HVS RJ45 to DB9 RS232 adapter w/8 inch power leads C.2 Specifications Physical Color:...
  • Page 24: Specifications

    4800, 9600, 19200) Port 1 NMEA 0183 version 2.00 and 3.00 ASCII output sentences GPALM, GPGGA, GPGLL, GPGSA, GPGSV, GPRMC, GPVTG; Garmin proprietary sentences PGRMB, PGRME, PGRMF, PGRMM, PGRMT, PGRMV NMEA 0183 Output: Position, velocity and time Receiver and satellite status...
  • Page 25: Garmin 16-Hvs Setups

    GPVTG data sentence gives ground speed and direction, which may be required for some applications. Changes can be made with the Garmin software, or with a terminal emulator and the Garmin technical user manual. Contact Garmin International (www.garmin.com) for either resource.
  • Page 26: D-1. Pgrmc Setup Sentence

    Appendix D. Garmin16-HVS Setups TABLE D-1. PGRMC Setup Sentence $PGRMC,1,2,3,4,5,6,7,8,9,10,11,12,13,14*hhCRLF Fix mode, A = Automatic, 2 = 2D, 3 = 3D Altitude above or below sea level Earth Datum User Earth datum semi-major axis User Earth datum inverse flattening factor User Earth datum delta x earth centered coordinate User Earth datum delta y earth centered coordinate User Earth datum delta z earth centered coordinate...
  • Page 27: D-3. Supported Nmea 0183 Sentences Order And Size

    Appendix D. Garmin16-HVS Setups $PGRMO,,G will cause the COM 1 port to change to GARMIN data Transfer format for the duration of the power cycle. The GARMIN mode is required for GPS 16/17 series product software updates. TABLE D-3. Supported NMEA 0183 Sentences...
  • Page 28 Appendix D. Garmin16-HVS Setups This is a blank page.
  • Page 29 This is a blank page.
  • Page 30 Campbell Scientific Companies Campbell Scientific, Inc. (CSI) 815 West 1800 North Logan, Utah 84321 UNITED STATES www.campbellsci.com info@campbellsci.com Campbell Scientific Africa Pty. Ltd. (CSAf) PO Box 2450 Somerset West 7129 SOUTH AFRICA www.csafrica.co.za cleroux@csafrica.co.za Campbell Scientific Australia Pty. Ltd. (CSA) PO Box 444 Thuringowa Central QLD 4812 AUSTRALIA...

This manual is also suitable for:

16-hvs

Table of Contents