Garmin 16-HVS Instruction Manual

Other manuals for 16-HVS: Instruction Manual
Manual is about: Garmin 16-HVS GPS Receiver Instruction Manual

Summary of 16-HVS

  • 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 , i n c ..

  • Page 2: Warranty and Assistance

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

  • Page 3: Garmin 16-Hvs Gps Receiver

    Garmin 16-hvs gps receiver table of contents pdf viewers note: these page numbers refer to the printed version of this document. Use the adobe acrobat® bookmarks tab for links to specific sections. 1. Overview.......................................................................1 2. Wiring............

  • Page 4

    Garmin 16-hvs gps receiver table of contents ii 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 .........................

  • Page 5: Garmin 16-Hvs Gps Receiver

    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. The cr1000, cr30...

  • 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 orange ground power ground black ground remote on/o...

  • Page 7

    Garmin 16-hvs gps receiver table 2-2. Wiring without the rj45 connector (garmin wiring) gps-garmin16-hvs pin color function 1 red power in, 6.0 to 40 volts dc 2 black power ground 3 yellow remote power on/off switch, ground for on, float for off 4 blue port 1 data in, rs232 or ttl levels ok 5 white ...

  • Page 8: 3.  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 spe...

  • Page 9: 4.  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 ...

  • Page 10

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

  • 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 str...

  • Page 12: 5.  Troubleshooting

    Garmin 16-hvs gps receiver 8 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. During this process you may f...

  • Page 13: A.1  Programming

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

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

  • Page 15

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

  • Page 16

    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, se...

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

  • Page 18

    Appendix a. Cr23x/cr10x programs ; test for valid gps fix and string read 4: if (xf) (p89) 1: 6 x loc [ quality ] 2: 3 >= 3: 1 f 4: 30 then do ; make a copy of time 5: z=x (p31) 1: 1 x loc [ raw_time ] 2: 18 z loc [ orig_tm ] ; add 0.45 to time stamp to eliminate complications with ; floating point ...

  • Page 19

    Appendix a. Cr23x/cr10x programs ; move decimal left 2 places 13: z=x*f (p37) 1: 19 x loc [ int1 ] 2: 100 f 3: 19 z loc [ int1 ] ; pluck of seconds 14: z=int(x) (p45) 1: 19 x loc [ int1 ] 2: 22 z loc [ seconds ] ; write data to final storage every time there is ; a valid read of gps data 15: do (p86...

  • Page 20

    Appendix a. Cr23x/cr10x programs a-8 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. This...

  • Page 21: 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 gg...

  • Page 22

    Appendix b. Cr9000(x) program example b-2 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) dat...

  • Page 23: Appendix C.  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 speci...

  • Page 24

    Appendix c. Specifications c-2 dgps (uscg/rtcm) position: 3-5 meters, 95% typical velocity: 0.1 knot rms steady state dgps (waas) position: less than 3 meters velocity: 0.1 knot rms steady state pps time: ±1 microsecond at rising edge of pps pulse (subject to selective availability) dynamics: 999 kn...

  • Page 25

    Appendix d. Garmin16-hvs setups as configured by campbell scientific, the garmin16-hvs will output the nmea 0183 $gpgga data string once a second, the pps signal is enabled with a duration of 80 milliseconds and the baud rate is set to 1200 baud. Special software (snrsrcfg.Exe) is available from gar...

  • Page 26

    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 1 fix mode, a = automatic, 2 = 2d, 3 = 3d 2 altitude above or below sea level 3 earth datum 4 user earth datum semi-major axis 5 user earth datum inverse flattening factor 6 user earth datu...

  • Page 27

    Appendix d. Garmin16-hvs setups 5. $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 sentence default out...

  • Page 28

    Appendix d. Garmin16-hvs setups d-4 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 scient...