Dependencies:   mbed

Committer:
pd0wm
Date:
Tue Sep 27 19:46:30 2011 +0000
Revision:
0:bec310bde899

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pd0wm 0:bec310bde899 1 /*
pd0wm 0:bec310bde899 2
pd0wm 0:bec310bde899 3 1.0 - 11/11/2010 - Initial release
pd0wm 0:bec310bde899 4
pd0wm 0:bec310bde899 5 1.1 - 11/11/2010 -
pd0wm 0:bec310bde899 6
pd0wm 0:bec310bde899 7 * Made some documentation corrections.
pd0wm 0:bec310bde899 8
pd0wm 0:bec310bde899 9 1.2 - 11/11/2010
pd0wm 0:bec310bde899 10
pd0wm 0:bec310bde899 11 * Added user API callback options for teh following signals:-
pd0wm 0:bec310bde899 12 1PPS
pd0wm 0:bec310bde899 13 NMEA RMC message processed
pd0wm 0:bec310bde899 14 NMEA GGA message processed
pd0wm 0:bec310bde899 15
pd0wm 0:bec310bde899 16 * Added example1.cpp and example2.cpp to demonstrate how to
pd0wm 0:bec310bde899 17 setup and use various features/functions.
pd0wm 0:bec310bde899 18
pd0wm 0:bec310bde899 19 1.3 - 11/11/2010
pd0wm 0:bec310bde899 20
pd0wm 0:bec310bde899 21 * Increased the frequency at which process_request flag to checked.
pd0wm 0:bec310bde899 22
pd0wm 0:bec310bde899 23 * Included the baud() and format() methods which are just passed onto
pd0wm 0:bec310bde899 24 the parent object, Serial.
pd0wm 0:bec310bde899 25
pd0wm 0:bec310bde899 26 * Updated the example1.cpp and example2.cpp to include more details.
pd0wm 0:bec310bde899 27
pd0wm 0:bec310bde899 28 1.4 - 13/10/2010
pd0wm 0:bec310bde899 29
pd0wm 0:bec310bde899 30 * Changed the name to MODGPS as "GPS" was too generic.
pd0wm 0:bec310bde899 31
pd0wm 0:bec310bde899 32 * Improved the example1.cpp program with a lot more details
pd0wm 0:bec310bde899 33 on the usage of the module.
pd0wm 0:bec310bde899 34
pd0wm 0:bec310bde899 35 1.5 - 14/11/2010
pd0wm 0:bec310bde899 36
pd0wm 0:bec310bde899 37 * Added more cookbook documentation.
pd0wm 0:bec310bde899 38
pd0wm 0:bec310bde899 39 1.6 - 14/11/2010
pd0wm 0:bec310bde899 40
pd0wm 0:bec310bde899 41 * Added more doxyden API comments.
pd0wm 0:bec310bde899 42
pd0wm 0:bec310bde899 43 1.7 - 14/10/2010
pd0wm 0:bec310bde899 44
pd0wm 0:bec310bde899 45 * Added a lot more doxygen comments for teh API group.
pd0wm 0:bec310bde899 46
pd0wm 0:bec310bde899 47 1.8 - 14/10/2010
pd0wm 0:bec310bde899 48
pd0wm 0:bec310bde899 49 * Added a lot more doxygen comments for the API group.
pd0wm 0:bec310bde899 50
pd0wm 0:bec310bde899 51 1.9 - 15/11/2010
pd0wm 0:bec310bde899 52
pd0wm 0:bec310bde899 53 * Added @ingroup API to getGPSquality()
pd0wm 0:bec310bde899 54
pd0wm 0:bec310bde899 55 1.10 - 17/11/2010
pd0wm 0:bec310bde899 56
pd0wm 0:bec310bde899 57 * Improved doxygen documentation
pd0wm 0:bec310bde899 58
pd0wm 0:bec310bde899 59 1.11 - 17/11/2010
pd0wm 0:bec310bde899 60
pd0wm 0:bec310bde899 61 * Mbed's systems don't like @mainpage, rolling back
pd0wm 0:bec310bde899 62
pd0wm 0:bec310bde899 63 1.12 - 15/04/2011
pd0wm 0:bec310bde899 64
pd0wm 0:bec310bde899 65 * Added VTG sentence (vectors speed and direction)
pd0wm 0:bec310bde899 66 See example3.cpp
pd0wm 0:bec310bde899 67
pd0wm 0:bec310bde899 68 1.13 - 16/04/2011
pd0wm 0:bec310bde899 69
pd0wm 0:bec310bde899 70 * Found that concat commas in NMEA sentences (indicating an empty field)
pd0wm 0:bec310bde899 71 caused strtok() to return pointers in incorrect positions.
pd0wm 0:bec310bde899 72 * Found copying geodetic and vtg data structs to temp buffers actually
pd0wm 0:bec310bde899 73 didn't work properly.
pd0wm 0:bec310bde899 74
pd0wm 0:bec310bde899 75 1.14 - 16/04/2011
pd0wm 0:bec310bde899 76
pd0wm 0:bec310bde899 77 * Doh, left in some debugging code which causes compile fail outside
pd0wm 0:bec310bde899 78 of the test harness.
pd0wm 0:bec310bde899 79
pd0wm 0:bec310bde899 80 1.15 - 20/04/2011
pd0wm 0:bec310bde899 81
pd0wm 0:bec310bde899 82 * Added the new feature that allows the library to set the Mbed RTC
pd0wm 0:bec310bde899 83 to the GPS/UTC time. This ensures the RTC is kept up to date with
pd0wm 0:bec310bde899 84 the latest GPS aquired time (syncs once each minute).
pd0wm 0:bec310bde899 85
pd0wm 0:bec310bde899 86 1.16 - 21/04/2011
pd0wm 0:bec310bde899 87
pd0wm 0:bec310bde899 88 * Added the ability for an application to request a copy of a NMEA sentence
pd0wm 0:bec310bde899 89 before it gets processed (mangled).
pd0wm 0:bec310bde899 90 See setRmc(), setGga(), setVtg() and setUkn().
pd0wm 0:bec310bde899 91
pd0wm 0:bec310bde899 92 */