Embedded Systems
gps.txt
Associated article: Writing GPS Applications
Tags: Web Development Embedded Systems Design
Published source code accompanying the article by Jon Person in which he examines how commerical-grade GPS apps work with different GPS devices, and how GPS data is interpreted. Also see GPS.ZIP.
Writing GPS Applications
by Jon Person
Listing One
'*******************************************************
'** The core of an NMEA interpreter
'*******************************************************
Public Class NmeaInterpreter
' Processes information from the GPS receiver
Public Function Parse(ByVal sentence As String) As Boolean
' Divide the sentence ...


