diff --git a/examples/Callbacks/CallbackExample1_NAV_PVT/CallbackExample1_NAV_PVT.ino b/examples/Callbacks/CallbackExample1_NAV_PVT/CallbackExample1_NAV_PVT.ino index 767f731..4b1afba 100644 --- a/examples/Callbacks/CallbackExample1_NAV_PVT/CallbackExample1_NAV_PVT.ino +++ b/examples/Callbacks/CallbackExample1_NAV_PVT/CallbackExample1_NAV_PVT.ino @@ -80,9 +80,9 @@ void setup() //myGNSS.enableDebugging(); // Uncomment this line to enable helpful debug messages on Serial - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { - Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing.")); + Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing.")); while (1); } diff --git a/examples/Callbacks/CallbackExample2_NAV_ODO/CallbackExample2_NAV_ODO.ino b/examples/Callbacks/CallbackExample2_NAV_ODO/CallbackExample2_NAV_ODO.ino index 707f7f1..3e1008c 100644 --- a/examples/Callbacks/CallbackExample2_NAV_ODO/CallbackExample2_NAV_ODO.ino +++ b/examples/Callbacks/CallbackExample2_NAV_ODO/CallbackExample2_NAV_ODO.ino @@ -63,9 +63,9 @@ void setup() //myGNSS.enableDebugging(); // Uncomment this line to enable helpful debug messages on Serial - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { - Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing.")); + Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing.")); while (1); } diff --git a/examples/Callbacks/CallbackExample3_TIM_TM2/CallbackExample3_TIM_TM2.ino b/examples/Callbacks/CallbackExample3_TIM_TM2/CallbackExample3_TIM_TM2.ino index d119087..3737bec 100644 --- a/examples/Callbacks/CallbackExample3_TIM_TM2/CallbackExample3_TIM_TM2.ino +++ b/examples/Callbacks/CallbackExample3_TIM_TM2/CallbackExample3_TIM_TM2.ino @@ -86,9 +86,9 @@ void setup() //myGNSS.enableDebugging(); // Uncomment this line to enable helpful debug messages on Serial - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { - Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing.")); + Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing.")); while (1); } diff --git a/examples/Callbacks/CallbackExample4_HNR/CallbackExample4_HNR.ino b/examples/Callbacks/CallbackExample4_HNR/CallbackExample4_HNR.ino index 284cf25..7c86fa8 100644 --- a/examples/Callbacks/CallbackExample4_HNR/CallbackExample4_HNR.ino +++ b/examples/Callbacks/CallbackExample4_HNR/CallbackExample4_HNR.ino @@ -83,9 +83,9 @@ void setup() //myGNSS.enableDebugging(); // Uncomment this line to enable debug messages on Serial - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { - Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing.")); + Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing.")); while (1); } diff --git a/examples/Callbacks/CallbackExample5_ESF/CallbackExample5_ESF.ino b/examples/Callbacks/CallbackExample5_ESF/CallbackExample5_ESF.ino index 0d09322..bd5a7d6 100644 --- a/examples/Callbacks/CallbackExample5_ESF/CallbackExample5_ESF.ino +++ b/examples/Callbacks/CallbackExample5_ESF/CallbackExample5_ESF.ino @@ -142,9 +142,9 @@ void setup() //myGNSS.enableDebugging(); // Uncomment this line to enable debug messages on Serial - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { - Serial.println(F("Ublox GPS not detected at default I2C address. Please check wiring. Freezing.")); + Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing.")); while (1); } diff --git a/examples/Data_Logging/DataLoggingExample1_NAV_PVT/DataLoggingExample1_NAV_PVT.ino b/examples/Data_Logging/DataLoggingExample1_NAV_PVT/DataLoggingExample1_NAV_PVT.ino index 19b20d5..0f09f64 100644 --- a/examples/Data_Logging/DataLoggingExample1_NAV_PVT/DataLoggingExample1_NAV_PVT.ino +++ b/examples/Data_Logging/DataLoggingExample1_NAV_PVT/DataLoggingExample1_NAV_PVT.ino @@ -158,7 +158,7 @@ void setup() // I.e. room for three messages plus an empty tail byte. myGNSS.setFileBufferSize(301); // setFileBufferSize must be called _before_ .begin - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing...")); while (1); diff --git a/examples/Data_Logging/DataLoggingExample2_TIM_TM2/DataLoggingExample2_TIM_TM2.ino b/examples/Data_Logging/DataLoggingExample2_TIM_TM2/DataLoggingExample2_TIM_TM2.ino index 361e960..05417ae 100644 --- a/examples/Data_Logging/DataLoggingExample2_TIM_TM2/DataLoggingExample2_TIM_TM2.ino +++ b/examples/Data_Logging/DataLoggingExample2_TIM_TM2/DataLoggingExample2_TIM_TM2.ino @@ -164,7 +164,7 @@ void setup() // I.e. room for three messages plus an empty tail byte. myGNSS.setFileBufferSize(109); // setFileBufferSize must be called _before_ .begin - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing...")); while (1); diff --git a/examples/Data_Logging/DataLoggingExample3_RXM_SFRBX_and_RAWX/DataLoggingExample3_RXM_SFRBX_and_RAWX.ino b/examples/Data_Logging/DataLoggingExample3_RXM_SFRBX_and_RAWX/DataLoggingExample3_RXM_SFRBX_and_RAWX.ino index 71aeadc..952f840 100644 --- a/examples/Data_Logging/DataLoggingExample3_RXM_SFRBX_and_RAWX/DataLoggingExample3_RXM_SFRBX_and_RAWX.ino +++ b/examples/Data_Logging/DataLoggingExample3_RXM_SFRBX_and_RAWX/DataLoggingExample3_RXM_SFRBX_and_RAWX.ino @@ -160,7 +160,7 @@ void setup() // getMaxFileBufferAvail will tell us the maximum number of bytes which the file buffer has contained. myGNSS.setFileBufferSize(fileBufferSize); // setFileBufferSize must be called _before_ .begin - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing...")); while (1); diff --git a/examples/Data_Logging/DataLoggingExample4_RXM_without_Callbacks/DataLoggingExample4_RXM_without_Callbacks.ino b/examples/Data_Logging/DataLoggingExample4_RXM_without_Callbacks/DataLoggingExample4_RXM_without_Callbacks.ino index 3b5576a..9e4737c 100644 --- a/examples/Data_Logging/DataLoggingExample4_RXM_without_Callbacks/DataLoggingExample4_RXM_without_Callbacks.ino +++ b/examples/Data_Logging/DataLoggingExample4_RXM_without_Callbacks/DataLoggingExample4_RXM_without_Callbacks.ino @@ -131,7 +131,7 @@ void setup() // getMaxFileBufferAvail will tell us the maximum number of bytes which the file buffer has contained. myGNSS.setFileBufferSize(fileBufferSize); // setFileBufferSize must be called _before_ .begin - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing...")); while (1); diff --git a/examples/Data_Logging/DataLoggingExample5_Fast_RXM/DataLoggingExample5_Fast_RXM.ino b/examples/Data_Logging/DataLoggingExample5_Fast_RXM/DataLoggingExample5_Fast_RXM.ino index 722d4a5..9a5881c 100644 --- a/examples/Data_Logging/DataLoggingExample5_Fast_RXM/DataLoggingExample5_Fast_RXM.ino +++ b/examples/Data_Logging/DataLoggingExample5_Fast_RXM/DataLoggingExample5_Fast_RXM.ino @@ -131,7 +131,7 @@ void setup() // getMaxFileBufferAvail will tell us the maximum number of bytes which the file buffer has contained. myGNSS.setFileBufferSize(fileBufferSize); // setFileBufferSize must be called _before_ .begin - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing...")); while (1); diff --git a/examples/Example14_DebugOutput/Example14_DebugOutput.ino b/examples/Example14_DebugOutput/Example14_DebugOutput.ino index 2ce1c6a..544655e 100644 --- a/examples/Example14_DebugOutput/Example14_DebugOutput.ino +++ b/examples/Example14_DebugOutput/Example14_DebugOutput.ino @@ -40,7 +40,7 @@ void setup() Wire.begin(); - if (myGNSS.begin() == false) //Connect to the Ublox module using Wire port + if (myGNSS.begin() == false) //Connect to the u-blox module using Wire port { Serial.println(F("u-blox GNSS not detected at default I2C address. Please check wiring. Freezing.")); while (1);