Garmin 16-HVS Instruction Manual

Garmin 16-hvs gps receiver instruction manual
Hide thumbs Also See for 16-HVS:

Advertisement

GPS16-HVS GPS Receiver
May 2008
Copyright © 2008
Campbell Scientific (Canada)Corp.

Advertisement

Table of Contents
loading

Summary of Contents for Garmin 16-HVS

  • Page 1 GPS16-HVS GPS Receiver May 2008 Copyright © 2008 Campbell Scientific (Canada)Corp.
  • Page 2 WARRANTY AND ASSISTANCE This equipment is warranted by CAMPBELL SCIENTIFIC (CANADA) CORP. (“CSC”) 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 are not warranted.
  • Page 3: Table Of Contents

    4. CRBasic Programming...5 5. Troubleshooting ...8 A. CR23X/CR10X Programs ... A-1 B. CR9000(X) Program Example... B-1 C. Specifications... C-1 D. GPS 16-HVS Setups ... D-1 4.1 Read GPS Data ...5 4.1.1 SerialOpen...5 4.1.2 SerialIn ...5 4.1.3 SerialFlush...5 4.1.4 SerialClose ...6 4.2 Parsing and Data Storage Options ...6...
  • Page 4 5. GPS Receiver Mounting Kit ... 4 Tables 2-1. Wiring the RJ45 Connector with Flying Leads ... 2 2-2. Wiring without the RJ45 Connector (Garmin Wiring)... 3 2-3. RJ45 to DB9 RS-232 Adapter ... 3 3-1. NEMA $GPGGA String Definition... 4 A-1.
  • Page 5: Overview

    1. Overview 2. Wiring FIGURE 1. GPS16-HVS GPS Receiver The GPS16-HVS is a complete GPS receiver manufactured by Garmin International, Inc. The GPS16-HVS has been configured by Campbell Scientific (Canada) Corp. (CSI) to work with CSI dataloggers. The CR1000, CR3000, CR800, and CR850 dataloggers use serial input instructions and string handling functions to read, parse and store GPS data.
  • Page 6 GPS16-HVS GPS Receiver If the GPS16-HVS is to be connected to a computer for setups, an RJ45 to DB9 adapter is needed. GPS16-HVS Blue Orange Black Green Yellow TABLE 2-1. Wiring the RJ45 Connector with Flying Leads Datalogger Connection 12 volts...
  • Page 7 TABLE 2-2. Wiring without the RJ45 Connector (Garmin Wiring) GPS16-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 GPS16-HVS GPS Receiver FIGURE 5. GPS16-HVS Receiver Mounting Kit, Part Number C1737...
  • Page 9: Gps Data

    Age of Differential GPS Data. Time in seconds since the last Type 1 or 9 Update zzzz Differential Reference Station ID (0000 to 1023) Asterisk, generally used as the termination character Checksum <CR><LF> Carriage return, line feed characters. GPS16-HVS GPS Receiver...
  • Page 10: Crbasic Programming

    CR850 dataloggers. These dataloggers use several instructions to read GPS output, which is asynchronous serial data. As shipped from Campbell Scientific, the GPS receiver will output data once a second, 1200 baud, 8 data bits, no parity, and 1 stop bit. Only the GPGGA string is output. See Section 3 for details on the GPGGA string.
  • Page 11: Parsing And Data Storage Options

    GPSData as string * 101 ' $GPGGA string about 57 characters PUBLIC ParseStr(18) as string * 15 ' Aliases allow proper labels in output data tables, ' and when viewing public variables alias ParseStr(1) = GPGGA GPS16-HVS GPS Receiver...
  • Page 12 GPS16-HVS GPS Receiver Alias ParseStr(2) = Time Alias ParseStr(3) = Latitude Alias ParseStr(4) = Hemisphere_NS Alias ParseStr(5) = Longitude Alias ParseStr(6) = Hemisphere_WE Alias ParseStr(7) = GPS_Quality Alias ParseStr(8) = Num_Satellites Alias ParseStr(9) = HDOP Alias ParseStr(10) = Altitude Alias ParseStr(11) = Altitude_units...
  • Page 13: Troubleshooting

    Make sure the $GPGGA string is showing a valid GPS fix. A valid GPS fix will display time, position and have a GPS quality number greater than zero. Part number L17218, RJ45 to DB9 adapter, is needed to connect the GPS16-HVS to the computer serial cable. GPS16-HVS GPS Receiver...
  • Page 14: A. Cr23X/Cr10X Programs

    Appendix A. CR23X/CR10X Programs A.1 Programming A.1.1 Program Execution Interval A.1.2 Reading GPS Data 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.
  • Page 15 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 16 NOTE Communication cable wiring for: CR23X/Example A-1 — PPS to C8, GPS transmit to C5. CR10X/Example A-2 — PPS to C8, GPS transmit to C2. 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.
  • Page 17 Appendix A. CR23X/CR10X Programs GPS quality number to verify your data. P15 will write to fifteen input locations if everything works correctly. If P15 fails to read the GPS data, only the first input location is written to. The GPS quality number will be unchanged.
  • Page 18 9) HDPFrac, Horizontal Dilution of Precision, tenths 10) Elevation, Elevation in meters 11) Geoidal, Geoidal separation in meters 12) Geoidalth, Geoidal separation in meters, tenths 13) Age, Age of differential GPS data 14) Agetenth, Age of differential GPS data, tenths 15) DiffID, Differential reference station ID Additional input locations used in the example program are: 18) Orig_TM, Copy of original time...
  • Page 19 Appendix A. CR23X/CR10X Programs 2: 71 Option ;G 3: 80 Option ;P 4: 71 Option ;G 5: 71 Option ;G 6: 65 Option ;A 7: 0 Option 8: 0 Option ; Test for valid GPS fix and string read 4: If (X<=>F) (P89) 1: 6 X Loc [ Quality ] 2: 3...
  • Page 20 12: Z=X-Y (P35) 1: 19 X Loc [ Int1 2: 21 Y Loc [ Minutes ] 3: 19 Z Loc [ Int1 ; Move decimal left 2 places 13: Z=X*F (P37) 1: 19 X Loc [ Int1 2: 100 3: 19 Z Loc [ Int1 ;...
  • Page 21 Appendix A. CR23X/CR10X Programs 24: Z=F x 10^n (P30) 1: -1 2: 00 n, Exponent of 10 3: 6 Z Loc [ Quality ] 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 GPS16-HVS running and the datalogger program running, look at the input location for GPS Quality Number.
  • Page 22 GPS fix, except during a GPS16-HVS warm start where time can be read before position is known. Don’t spend a lot of time trouble shooting a phantom problem just because the GPS receiver does not have a valid GPS fix.
  • Page 23: B. Cr9000(X) Program Example

    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...
  • Page 24 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 25: C. Specifications

    Electrical Characteristics Input Voltage: Current: GPS Receiver Sensitivity: GPS Performance Receiver WAAS Enabled; 12 parallel channel GPS receiver continuously tracks and uses up to 12 satellites, 11 if PPS is active Acquisition Times (Approximate) Reacquisition: Warm: Cold: SkySearch: Sentence Rate: 1 second default; NMEA 0183 output interval configurable...
  • Page 26 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 27 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 28: D-1. Pgrmc Setup Sentence

    Appendix D. GPS16-HVS Setups PGRMC Notes: All configuration changes take effect after receipt of a valid value except baud rate and PPS mode, which take effect on the next power cycle or an external reset event. TABLE D-2. PGRMO Output Sentence Enable/Disable PGRMO Notes: TABLE D-1.
  • Page 29: D-3. Supported Nmea 0183 Sentences Order And Size

    $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 Order and Size...
  • Page 30 Appendix D. GPS16-HVS Setups This is a blank page.

This manual is also suitable for:

Gps16-hvs

Table of Contents