Skip to content

Commit

Permalink
Re-sync library version number
Browse files Browse the repository at this point in the history
*  minor spacing changes
  • Loading branch information
SlashDevin committed May 13, 2017
1 parent ca79e41 commit 1fc272f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/NMEAsimple/NMEAsimple.ino
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void loop()
Serial.print( F("Location: ") );
if (fix.valid.location) {
Serial.print( fix.latitude(), 6 );
Serial.print( ',' );
Serial.print( ',' );
Serial.print( fix.longitude(), 6 );
}

Expand Down
2 changes: 1 addition & 1 deletion examples/NMEAtimezone/NMEAtimezone.ino
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ static void doSomeWork( const gps_fix & fix )
}

// Set these values to the offset of your timezone from GMT
static const int32_t zone_hours = -5L; // EST
static const int32_t zone_hours = -5L; // EST
static const int32_t zone_minutes = 0L; // usually zero
static const NeoGPS::clock_t zone_offset =
zone_hours * NeoGPS::SECONDS_PER_HOUR +
Expand Down
8 changes: 4 additions & 4 deletions examples/SyncTime/SyncTime.ino
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ void setup()
DEBUG_PORT.println( F("Looking for GPS device on " USING_GPS_PORT) );
DEBUG_PORT.println( F("Local time seconds.milliseconds") );
DEBUG_PORT.flush();

gps_port.begin( 9600 );
}

Expand All @@ -124,15 +124,15 @@ void setup()
void loop()
{
while (gps.available( gps_port )) {
fix = gps.read();
fix = gps.read();
}

if (fix.valid.time) {
if (fix.valid.time) {
uint32_t UTCms = gps.UTCms();

if (((UTCms % CLOCK_INTERVAL_MS) == 0) && (UTCms != lastShowTime)) {
showTime( UTCms, 1000 );
lastShowTime = UTCms;
}
}
}
}
6 changes: 3 additions & 3 deletions examples/ubloxRate/ubloxRate.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
//
// Enter the following commands through the Serial Monitor window:
//
// '1' - send NMEA PUBX text command to enable all sentences
// '0' - send NMEA PUBX text command to disable all sentences except GLL
// 'd' - send UBX binary command to disable all sentences except GLL
// '1' - send NMEA PUBX text command to enable all sentences
// '0' - send NMEA PUBX text command to disable all sentences except GLL
// 'd' - send UBX binary command to disable all sentences except GLL
// 'r1' - send UBX binary command to set update rate to 1Hz
// 'r5' - send UBX binary command to set update rate to 5Hz
// 'r0' - send UBX binary command to set update rate to 10Hz
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name=NeoGPS
version=4.1.3
version=4.1.7
author=SlashDevin
maintainer=SlashDevin
sentence=NMEA and ublox GPS parser, configurable to use as few as 10 bytes of RAM
paragraph=Faster and smaller than all other GPS parsers
category=Communication
url=https://github.com/SlashDevin/NeoGPS
architectures=avr,samd,sam,esp8266
architectures=avr,samd,sam,esp8266,arc32
includes=NMEAGPS.h

0 comments on commit 1fc272f

Please sign in to comment.