Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Commit 5b9a03f

Browse files
authored
Merge pull request #168 from adamgarbo/corrections
Update library helper links and correct all instances of "Ublox"
2 parents b22eff8 + 122daf7 commit 5b9a03f

File tree

58 files changed

+281
-281
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+281
-281
lines changed

examples/Dead Reckoning/Example1_calibrateSensor/Example1_calibrateSensor.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@
3232

3333
#include <Wire.h> //Needed for I2C to GPS
3434

35-
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_Ublox_GPS
35+
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3636
SFE_UBLOX_GPS myGPS;
3737

3838
void setup()
3939
{
4040
Serial.begin(115200);
4141
while (!Serial); //Wait for user to open terminal
42-
Serial.println(F("SparkFun Ublox Example"));
42+
Serial.println(F("SparkFun u-blox Example"));
4343

4444
Wire.begin();
4545

46-
if (myGPS.begin() == false) //Connect to the Ublox module using Wire port
46+
if (myGPS.begin() == false) //Connect to the u-blox module using Wire port
4747
{
48-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
48+
Serial.println(F("u-blox GPS not detected at default I2C address. Please check wiring. Freezing."));
4949
while (1);
5050
}
5151

examples/Dead Reckoning/Example2_getIMUData/Example2_getIMUData.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@
2424

2525
#include <Wire.h> //Needed for I2C to GPS
2626

27-
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_Ublox_GPS
27+
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2828
SFE_UBLOX_GPS myGPS;
2929

3030
void setup()
3131
{
3232
Serial.begin(115200);
3333
while (!Serial); //Wait for user to open terminal
34-
Serial.println(F("SparkFun Ublox Example"));
34+
Serial.println(F("SparkFun u-blox Example"));
3535

3636
Wire.begin();
3737

38-
if (myGPS.begin() == false) //Connect to the Ublox module using Wire port
38+
if (myGPS.begin() == false) //Connect to the u-blox module using Wire port
3939
{
40-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
40+
Serial.println(F("u-blox GPS not detected at default I2C address. Please check wiring. Freezing."));
4141
while (1);
4242
}
4343

examples/Dead Reckoning/Example3_getSensorStatus/Example3_getSensorStatus.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@
2828

2929
#include <Wire.h> //Needed for I2C to GPS
3030

31-
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_Ublox_GPS
31+
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3232
SFE_UBLOX_GPS myGPS;
3333

3434
void setup()
3535
{
3636
Serial.begin(115200);
3737
while (!Serial); //Wait for user to open terminal
38-
Serial.println(F("SparkFun Ublox Example"));
38+
Serial.println(F("SparkFun u-blox Example"));
3939

4040
Wire.begin();
4141

42-
if (myGPS.begin() == false) //Connect to the Ublox module using Wire port
42+
if (myGPS.begin() == false) //Connect to the u-blox module using Wire port
4343
{
44-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
44+
Serial.println(F("u-blox GPS not detected at default I2C address. Please check wiring. Freezing."));
4545
while (1);
4646
}
4747

examples/Dead Reckoning/Example4_vehicleDynamics/Example4_vehicleDynamics.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@
2626

2727
#include <Wire.h> //Needed for I2C to GPS
2828

29-
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_Ublox_GPS
29+
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3030
SFE_UBLOX_GPS myGPS;
3131

3232
void setup()
3333
{
3434
Serial.begin(115200);
3535
while (!Serial); //Wait for user to open terminal
36-
Serial.println(F("SparkFun Ublox Example"));
36+
Serial.println(F("SparkFun u-blox Example"));
3737

3838
Wire.begin();
3939

40-
if (myGPS.begin() == false) //Connect to the Ublox module using Wire port
40+
if (myGPS.begin() == false) //Connect to the u-blox module using Wire port
4141
{
42-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
42+
Serial.println(F("u-blox GPS not detected at default I2C address. Please check wiring. Freezing."));
4343
while (1);
4444
}
4545

examples/Dead Reckoning/Example5_getHNRData/Example5_getHNRData.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
#include <Wire.h> //Needed for I2C to GPS
3131

32-
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_Ublox_GPS
32+
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3333
SFE_UBLOX_GPS myGPS;
3434

3535
void setup()
@@ -42,7 +42,7 @@ void setup()
4242

4343
//myGPS.enableDebugging(); // Uncomment this line to enable debug messages on Serial
4444

45-
if (myGPS.begin() == false) //Connect to the Ublox module using Wire port
45+
if (myGPS.begin() == false) //Connect to the u-blox module using Wire port
4646
{
4747
Serial.println(F("Warning! u-blox GPS did not begin correctly."));
4848
Serial.println(F("(This may be because the I2C port is busy with HNR messages.)"));

examples/Dead Reckoning/Example6_getAutoHNRData/Example6_getAutoHNRData.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
#include <Wire.h> //Needed for I2C to GPS
3030

31-
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_Ublox_GPS
31+
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3232
SFE_UBLOX_GPS myGPS;
3333

3434
boolean usingAutoHNRAtt = false;
@@ -45,7 +45,7 @@ void setup()
4545

4646
//myGPS.enableDebugging(); // Uncomment this line to enable debug messages on Serial
4747

48-
if (myGPS.begin() == false) //Connect to the Ublox module using Wire port
48+
if (myGPS.begin() == false) //Connect to the u-blox module using Wire port
4949
{
5050
Serial.println(F("Warning! u-blox GPS did not begin correctly."));
5151
Serial.println(F("(This may be because the I2C port is busy with HNR messages.)"));

examples/Example10_AltitudeMSL/Example10_AltitudeMSL.ino

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
License: MIT. See license file for more information but you can
77
basically do whatever you want with this code.
88
9-
This example shows how to query a Ublox module for its lat/long/altitude.
9+
This example shows how to query a u-blox module for its lat/long/altitude.
1010
1111
getAltitude() reports mm above ellipsode model of the globe. There are some
1212
instances where altitude above Mean Sea Level is better. This example shows how
@@ -30,7 +30,7 @@
3030

3131
#include <Wire.h> //Needed for I2C to GPS
3232

33-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_Ublox_GPS
33+
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
3434
SFE_UBLOX_GPS myGPS;
3535

3636
long lastTime = 0; //Tracks the passing of 2000ms (2 seconds)
@@ -39,13 +39,13 @@ void setup()
3939
{
4040
Serial.begin(115200);
4141
while (!Serial); //Wait for user to open terminal
42-
Serial.println("SparkFun Ublox Example");
42+
Serial.println("SparkFun u-blox Example");
4343

4444
Wire.begin();
4545

46-
if (myGPS.begin() == false) //Connect to the Ublox module using Wire port
46+
if (myGPS.begin() == false) //Connect to the u-blox module using Wire port
4747
{
48-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
48+
Serial.println(F("u-blox GPS not detected at default I2C address. Please check wiring. Freezing."));
4949
while (1);
5050
}
5151
}

examples/Example11_ResetModule/Example1_FactoryDefaultviaI2C/Example1_FactoryDefaultviaI2C.ino

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@
1919
Open the serial monitor at 115200 baud to see the output
2020
*/
2121

22-
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_Ublox_GPS
22+
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2323
SFE_UBLOX_GPS myGPS;
2424

2525
void setup()
2626
{
2727
Serial.begin(115200);
2828
while (!Serial); //Wait for user to open terminal
29-
Serial.println("SparkFun Ublox Example");
29+
Serial.println("SparkFun u-blox Example");
3030

3131
Wire.begin();
3232

33-
if (myGPS.begin() == false) //Connect to the Ublox module using Wire port
33+
if (myGPS.begin() == false) //Connect to the u-blox module using Wire port
3434
{
35-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
35+
Serial.println(F("u-blox GPS not detected at default I2C address. Please check wiring. Freezing."));
3636
while (1);
3737
}
3838

@@ -44,7 +44,7 @@ void setup()
4444

4545
if (myGPS.begin() == false) //Attempt to re-connect
4646
{
47-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
47+
Serial.println(F("u-blox GPS not detected at default I2C address. Please check wiring. Freezing."));
4848
while (1);
4949
}
5050

examples/Example11_ResetModule/Example2_FactoryDefaultsviaSerial/Example2_FactoryDefaultsviaSerial.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
Open the serial monitor at 115200 baud to see the output
2020
*/
2121

22-
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_Ublox_GPS
22+
#include <SparkFun_Ublox_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2323
SFE_UBLOX_GPS myGPS;
2424

2525
int state = 0; // steps through auto-baud, reset, etc states
@@ -28,7 +28,7 @@ void setup()
2828
{
2929
Serial.begin(115200);
3030
while (!Serial); //Wait for user to open terminal
31-
Serial.println("SparkFun Ublox Example");
31+
Serial.println("SparkFun u-blox Example");
3232
}
3333

3434
void loop()

examples/Example12_UseUart/Example12_UseUart.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@
2727
Open the serial monitor at 115200 baud to see the output
2828
*/
2929

30-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_Ublox_GPS
30+
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
3131
SFE_UBLOX_GPS myGPS;
3232

3333
#include <SoftwareSerial.h>
3434
SoftwareSerial mySerial(10, 11); // RX, TX. Pin 10 on Uno goes to TX pin on GPS module.
3535

36-
long lastTime = 0; //Simple local timer. Limits amount of I2C traffic to Ublox module.
36+
long lastTime = 0; //Simple local timer. Limits amount of I2C traffic to u-blox module.
3737

3838
void setup()
3939
{
4040
Serial.begin(115200);
4141
while (!Serial); //Wait for user to open terminal
42-
Serial.println("SparkFun Ublox Example");
42+
Serial.println("SparkFun u-blox Example");
4343

4444
//Assume that the U-Blox GPS is running at 9600 baud (the default) or at 38400 baud.
4545
//Loop until we're in sync and then ensure it's at 38400 baud.

0 commit comments

Comments
 (0)