Intro to GPS With Microcontrollers

by Aleator777 in Circuits > Wireless

81163 Views, 1016 Favorites, 0 Comments

Intro to GPS With Microcontrollers

INTEL GPS Demo Closeup.png

Once the purview of strictly military operations, GPS has become a regular part of modern living and in relatively short time! Who wouldn't want want to know when and where they are anywhere on the planet? It's a science fiction dream brought into reality, one now so woven into our lives it seems almost trivial. The demand for precise positional data built into planes, ships, cars, and now nearly every modern cellular phone means a few things for the average hobbyist: smaller, higher quality, lower cost, easier to use, and better documented GPS receivers available for purchase!

In this Instructable, we'll discuss the Global Positioning System as a whole and build a simple circuit for communicating with a receiver with the Intel Edison. This setup will allow us access to positional data, which will open the possibility for more advanced interpretation and enable real-world applications.

What Is GPS?

INTEL GPS Layout.png

Brief History

The roots of the Global Positioning System go back to the height of the Cold War when advancing space technology was a high priority for the American government. While initially conceived for providing a strategic military advantage for the U.S. war machine and (among other things) the need to precisely guide Intercontinental Ballistic Missiles toward their far off targets, it was eventually opened up to civilian use in the 90s (albeit at an intentionally degraded precision for non-military receivers). Eventually the full accuracy afforded by the satellites was opened to the public in spring of 2000.

The System as we use it today is fairly modern network, with true global coverage only coming online within the middle of the last decade. It is not the only satellite system capable of providing positional data however, the Russian GLONASS also came online within a similar time frame as the GPS. Due to political and financial constraints, adoption of GLONASS receivers has been less prevalent. The EU, China, Japan, and India are also developing similar satellite networks of regional use, although GLONASS is the only comparable network of global coverage.

How Does it Work?

Each satellite has a stable atomic clock on board for broadcasting accurate time data. Each satellite continuously broadcasts its time position data which can then be processed by a receiver. A receiver must have at least four satellites in range to have an accurate "lock" on its location (three points of data for location, and one for time reference). The actual work of the receiver boils down to computing the signal delays of the transmissions and converting this into easy-to-use data for the user. This is, of course, a vast simplification of the system; the reality of the inner workings of GPS are quite complex and very impressive. Thankfully, it is quite easy and of low cost to interface with a basic receiver from an end user's standpoint.



GPS Modules

INTEL GPS Demo Wide.png
INTEL GPS Vector Schematic.png

Due to the intense market demand, there are a wide variety of GPS receivers available from many manufactures, often coming as an all-in-one shielded package alongside a basic ceramic antenna. Which module is right for your next electronic project? Here are some things to consider when choosing which to buy:

Choosing the Right Receiver

Power Considerations:

Like most modern electronic components, GPS receiver modules are following the standard of running on ever lower voltages with 3.3V being most common. Most projects will only be receiving data, making 3.3V and acceptable voltage for a logic high bit to your 3.3 or 5V system. Many receivers allow a modest amount of configuration depending on how you'd prefer the module to transmit its packets, so be aware of the system voltage. A single 1K resistor on your 5V processor's Tx line to the module's Rx line should be sufficient. Most receivers are also quite power efficient, usually drawing well below 100 mAh and often in the sub 50 mAh range during steady reception, making them practical for most battery powered designs.

Antenna:

Many common modules and breakout boards often come with a built-in ceramic patch antenna. These tiny beige-ish blocks with a conductive blob in their centers are sufficient for most GPS reception projects, especially if you're wanting compact size. Some modules come with pre-soldered SMA or wee u.fl connectors on board for connection to an external antenna, which is especially useful if you wish to mount your receiver inside a hard case.

Update Rate:

Normally you'll find modules with a 1 Hz update rate, providing a sufficiently steady stream of data for most slow moving projects. Newer modules also offer 5 Hz or 10 Hz+ data rates, but this is really only useful for fast moving projects like quadrotors zipping around a course. An update rate in excess of 1 Hz is also potentially overwhelming for smaller micros with minimal amounts of RAM.

Bonus Features:

Some modules include a built-in super capacitor or battery for backup power during power cycling, allowing for a faster time-to-first-fix. The MTK3339 module I'm using also has a small data-logging capability, which is interesting for a brief recording experiment, but less useful for long term data collection and storage.

Simple Connection Circuit:

I'll be discussing the actual data we're receiving from the GPS module on the following steps. For my own testing purposes, I'll be using Adafruit's Ultimate GPS breakout board and an Intel Edison with the Arduino Breakout. The board will accept either 3.3 or 5 volts as power, and has handy standard 2.54mm pinout for attaching to a breadboard or female jumper wires. As you can see from the simple connection diagram above, I'm only connect three pins on the module: power to 5 volts, ground to ground, and the module's Tx line to the Rx of the Edison's UART, which is broken out to pin 0 on the Arduino board. It's as easy at that! There are other pins broken out for configuring the module, checking the satellite lock, power control, and a steady pulse output, but the single Tx to Rx connection is all you'll need to begin receiving GPS data.

GPS Receiver Links:

Here is the exact module that I'm using from Adafruit. Sparkfun and Seeedstudio also offer a selection of different receivers as well.

Deciphering NMEA Protocols

INTEL GPS strings.jpg

How Are We Receiving Data?

Most receivers you come across will transmit informal over a simple serial data connection. Often it is encoded in plain ASCII characters, but there are other compact binary formats available from some modules for higher data rates. We'll be looking at a regular ASCII feed since it is much easier to interpret.The data we're receiving from the GPS module is formatted according to NMEA 0183 standard.

The NMEA Protocol

The National Marine Electronics Association has a standard for many different ship-board electrical devices. The NMEA 0183 standard is useful for GPS receivers to output since it is a clear, and relatively slow (typically 4800 or 9600 baud) protocol that is palatable for any modern microcontroller with a UART to handle. Let's look at a sample block of four string output by the MTK3339 module. I've spaced out the string above to make it clearer to read, but the raw stream has no spaces after commas and a single set of carriage return and line feed characters at the end of each string (strings begin with a "$" character).

GPGSA

Global Positioning Active Satellites - This string will tell us the number of satellites that are currently in range of the module, the type of fix (2D or 3D) and the precision of the signal.

GPRMC

Global Positioning Recommended Minimum Coordinates - This is the meat of the data strings, containing the time of fix, if the receiver is ok, latitude, longitude, speed (in knots), fix type.

GPVTG

Global Positioning Course Over Ground (Track Good) - This contains more data regarding ground speed in knots and kilometers per hour.

GPGGA

Global Positioning System Fix Data - full coordinate data containing everything in the RMC string, in addition to extra accuracy data as well as altitude. We'll break this string down more thoroughly on the next step.


Manually Parsing GPS Data

INTEL GPS GPGGA Breakdown.jpg

Let's spill the guts of this GPGGA string:

Sentence ID: $GPGGA (fix data)

UTC Time: formatted as hhmmss.sss (hours, minutes, seconds, and milliseconds)

Latitude: formatted ddmm.mmmm (degrees, minutes)

N/S Indicator: N = North, S = South

Longitude: dddmm.mmmm

E/W Indicator: E = East, W = West

Position Fix: 0 = Invalid, 1 = Valid SPS, 2 = Valid DGPS, 3 = Valid PPS

Satellites Used: satellites being used (0-12)

HDOP:

the horizontal dilution of precision (lower numbers are better; values greater than 10 suggest poor accuracy)

Altitude: atitude in meters according to WGS-84 ellipsoid

Altitude is kind of a funny thing when you get to down to specifying to what you're referencing the height of something. The "true" shape of the Earth is an ellipsoid shape (like a slightly squished sphere) bulging out at the equator. The ellipsoid is used in Geodesy at a mathmatical point of reference for the mean sea level accross the planet. Things are even more complicated if you want higher precision, which is where the Geoid comes into play, which accounts for the uneven gravitational effects the Earth has on it's surface.

Altitude Units: M = Meters

Geoid Seperation: (Geoid seperation in meters according to WGS-84 ellipsoid)

Seperation Units: M = Meters

DGPS Age: age of DGPS data in seconds

DGPS Station ID: basic identification number

Differential GPS was created as to improve the purposefully degraded civilian GPS signal that was broadcast publicly in the 1990s. The ground based network of radio transmitters proved very useful in aiding navigation for non military users, even after the non-degraded signal was released to the public in 2000, allowing accuracy down to <1 meter.

Checksum: used for low level error handling

Let's talk about how we can easily extract all this data on the following step.

GPS Libraries

5384c11edbf3ec49240000a2.jpg

There's no need to fret about muddling about with strings and trying to convert all this data into neat individual variables! The good open source citizens of the internet have provided libraries for doing just that. Here are two that I recommend:

AdaGPS

Adafruit provides an awesome library for playing around with GPS data. By default, their code relies on AVR specific registers for calling an interrupt routine function for gathering data from the GPS, so if you're using an Edison board, you'll need to remove this and poll it manually. Additionally, it's important to note that the UART on the Arduino Edison BoB is Serial1 (Serial is the direct COM link to your computer).

TinyGPS++

A wonderfully lightweight library that takes a serial stream (connected to a GPS of course) as an object, and then converts it into nice little packages. Getting your latitude is as simple as asking for gps.location.rawLat().deg, or your speed withgps.speed.mph(). You can check out the full feature list through the link above.

Bonus:

Although it's not a library, check out this breakdown the Haversine Formula (a means of calculating the distance between two geodetic coordinates!)

DIY GPS Applications

INTEL GPS Applications.jpg

I hope you've found this a pleasant and practical introduction to the world of GPS. Here are some GPS related projects to put these wondrous radio receivers to use!

Explore the out doors with your own DIY GPS handheld and discover the world of geocaching.

Build an inverse treasure chest that unlocks when you bring it to the right coordinates with your own reverse geocache.

Why not add a GPS to a rover and throw your hat into the Sparkfun Autonomous Vehicle Competition?

You could use a regular RTC for your next clock project, but why not use the time data from the GPS to sync local time. Your clock will be virtually bound to a hyperaccurate atomic clock orbiting the planet at thousands of miles per hour, wouldn't that make your project, well, objectively better? The answer is yes.