• Home
  • Products
  • Contact
  • Downloads
  • FAQ
  • Purchase




Update News
GPS DLL

<-- Back to the GPS DLL Main Page

 


What's new in version 1.0.3?

Two functions have been added:

1.

GPS connection Status (informs whether there is a valid GPS signal reception or not...)
Public Declare Function gpsconnectionstatus% Lib "GPSV77K.DLL" Alias "GPSCONNECTIONSTATUS" (ByVal X%)

example: x% = gpsconnectionstatus%(0)
remarks: if x% = 1 then connection is lost.



2.

number of seconds before the DLL is going to warn in case of signal loss     
Public Declare Function gpssignallosswarningtime% Lib "GPSV77K.DLL" Alias "GPSSIGNALLOSSWARNINGTIME" (ByVal X%)

example: call gpssignalloswarningtime%(3)
remarks: This will set the number of seconds before the DLL is going to warn in case of signal loss (GPS connection disabled / Antenna disconnected / etc...) ' This could be 2...6 seconds... or whatever.



What's new in version 1.0.2?
Built in DLL Version check.

X% = version%(0)
X% returns the version of the DLL


What's new in version 1.0.1? // Important notice to GPS DLL version 1.0 users !
A change in variable declaration ( just for one function )
This change was necessary to be able to work with baudrates higher then 19200
Integer declarations(%) have been changed in Long declarations (&) for the following function:
(Changes are in red)

Public Declare Function serial& Lib "GPSV77K.DLL" Alias "SERIAL" _
(ByVal Commport&, _
ByVal Baudrate
&, _
ByVal Databits
&, _
ByVal StopBits
&, _
ByVal Parity
&, _
ByVal triggercommport
&)

example: Call serial
& (2,4800,8,1,0,1)