Skip to content

Commit 129f275

Browse files
committed
More u-blox corrections
1 parent 302ea3e commit 129f275

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

Diff for: examples/Callbacks/CallbackExample1_NAV_PVT/CallbackExample1_NAV_PVT.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ void setup()
8080

8181
//myGNSS.enableDebugging(); // Uncomment this line to enable helpful debug messages on Serial
8282

83-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
83+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
8484
{
85-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
85+
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing."));
8686
while (1);
8787
}
8888

Diff for: examples/Callbacks/CallbackExample2_NAV_ODO/CallbackExample2_NAV_ODO.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ void setup()
6363

6464
//myGNSS.enableDebugging(); // Uncomment this line to enable helpful debug messages on Serial
6565

66-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
66+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
6767
{
68-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
68+
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing."));
6969
while (1);
7070
}
7171

Diff for: examples/Callbacks/CallbackExample3_TIM_TM2/CallbackExample3_TIM_TM2.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ void setup()
8686

8787
//myGNSS.enableDebugging(); // Uncomment this line to enable helpful debug messages on Serial
8888

89-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
89+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
9090
{
91-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
91+
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing."));
9292
while (1);
9393
}
9494

Diff for: examples/Callbacks/CallbackExample4_HNR/CallbackExample4_HNR.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ void setup()
8383

8484
//myGNSS.enableDebugging(); // Uncomment this line to enable debug messages on Serial
8585

86-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
86+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
8787
{
88-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
88+
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing."));
8989
while (1);
9090
}
9191

Diff for: examples/Callbacks/CallbackExample5_ESF/CallbackExample5_ESF.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ void setup()
142142

143143
//myGNSS.enableDebugging(); // Uncomment this line to enable debug messages on Serial
144144

145-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
145+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
146146
{
147-
Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing."));
147+
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing."));
148148
while (1);
149149
}
150150

Diff for: examples/Data_Logging/DataLoggingExample1_NAV_PVT/DataLoggingExample1_NAV_PVT.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ void setup()
158158
// I.e. room for three messages plus an empty tail byte.
159159
myGNSS.setFileBufferSize(301); // setFileBufferSize must be called _before_ .begin
160160

161-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
161+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
162162
{
163163
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing..."));
164164
while (1);

Diff for: examples/Data_Logging/DataLoggingExample2_TIM_TM2/DataLoggingExample2_TIM_TM2.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ void setup()
164164
// I.e. room for three messages plus an empty tail byte.
165165
myGNSS.setFileBufferSize(109); // setFileBufferSize must be called _before_ .begin
166166

167-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
167+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
168168
{
169169
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing..."));
170170
while (1);

Diff for: examples/Data_Logging/DataLoggingExample3_RXM_SFRBX_and_RAWX/DataLoggingExample3_RXM_SFRBX_and_RAWX.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ void setup()
160160
// getMaxFileBufferAvail will tell us the maximum number of bytes which the file buffer has contained.
161161
myGNSS.setFileBufferSize(fileBufferSize); // setFileBufferSize must be called _before_ .begin
162162

163-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
163+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
164164
{
165165
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing..."));
166166
while (1);

Diff for: examples/Data_Logging/DataLoggingExample4_RXM_without_Callbacks/DataLoggingExample4_RXM_without_Callbacks.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void setup()
131131
// getMaxFileBufferAvail will tell us the maximum number of bytes which the file buffer has contained.
132132
myGNSS.setFileBufferSize(fileBufferSize); // setFileBufferSize must be called _before_ .begin
133133

134-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
134+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
135135
{
136136
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing..."));
137137
while (1);

Diff for: examples/Data_Logging/DataLoggingExample5_Fast_RXM/DataLoggingExample5_Fast_RXM.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void setup()
131131
// getMaxFileBufferAvail will tell us the maximum number of bytes which the file buffer has contained.
132132
myGNSS.setFileBufferSize(fileBufferSize); // setFileBufferSize must be called _before_ .begin
133133

134-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
134+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
135135
{
136136
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing..."));
137137
while (1);

Diff for: examples/Example14_DebugOutput/Example14_DebugOutput.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ void setup()
4040

4141
Wire.begin();
4242

43-
if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port
43+
if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
4444
{
4545
Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing."));
4646
while (1);

0 commit comments

Comments
 (0)