Skip to content

Commit 06a6097

Browse files
committed
Fix SARA references in examples
1 parent bd91c64 commit 06a6097

File tree

5 files changed

+36
-36
lines changed

5 files changed

+36
-36
lines changed

examples/Example3_RegisterOperator/Example3_RegisterOperator.ino

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
// Uncomment the module you're using. If your module is not listed below, then
88
// it's not supported for this example
99
UBX_CELL myModule; // This example works with all modules, so the base class can be used
10-
// UBX_CELL myModule; // Base SARA-R5 class
11-
// UBX_CELL00S myModule;
12-
// UBX_CELL00S_01B myModule;
13-
// UBX_CELL00S_61B myModule;
14-
// UBX_CELL10M8S_61B myModule;
15-
// UBX_CELL10S myModule;
10+
// SARA_R5 myModule; // Base SARA-R5 class
11+
// SARA_R500S myModule;
12+
// SARA_R500S_01B myModule;
13+
// SARA_R500S_61B myModule;
14+
// SARA_R510M8S_61B myModule;
15+
// SARA_R510S myModule;
1616
// LARA_R6 myModule; // Base LARA-R6 class
1717
// LARA_R6001 myModule;
1818
// LARA_R6001D myModule;
@@ -103,7 +103,7 @@ int convertOperatorNumber( mobile_network_operator_t mno)
103103
// of MNO_SW_DEFAULT.
104104
#define MAX_OPERATORS 10
105105

106-
// Uncomment this line if you want to be able to communicate directly with the SARA in the main loop
106+
// Uncomment this line if you want to be able to communicate directly with the module in the main loop
107107
//#define DEBUG_PASSTHROUGH_ENABLED
108108

109109
void setup()

examples/Example4_Ping/Example4_Ping.ino

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
// Uncomment the module you're using. If your module is not listed below, then
88
// it's not supported for this example
99
UBX_CELL myModule; // This example works with all modules, so the base class can be used
10-
// UBX_CELL myModule; // Base SARA-R5 class
11-
// UBX_CELL00S myModule;
12-
// UBX_CELL00S_01B myModule;
13-
// UBX_CELL00S_61B myModule;
14-
// UBX_CELL10M8S_61B myModule;
15-
// UBX_CELL10S myModule;
10+
// SARA_R5 myModule; // Base SARA-R5 class
11+
// SARA_R500S myModule;
12+
// SARA_R500S_01B myModule;
13+
// SARA_R500S_61B myModule;
14+
// SARA_R510M8S_61B myModule;
15+
// SARA_R510S myModule;
1616
// LARA_R6 myModule; // Base LARA-R6 class
1717
// LARA_R6001 myModule;
1818
// LARA_R6001D myModule;
@@ -23,7 +23,7 @@ UBX_CELL myModule; // This example works with all modules, so the base class can
2323

2424
String pingMe = ""; // The name of the server we are going to ping
2525

26-
// processPingResult is provided to the SARA-R5 library via a
26+
// processPingResult is provided to the u-blox cellular library via a
2727
// callback setter -- setPingCallback. (See the end of setup())
2828
void processPingResult(int retry, int p_size, String remote_hostname, IPAddress ip, int ttl, long rtt)
2929
{
@@ -93,7 +93,7 @@ void setup()
9393
}
9494
else
9595
{
96-
Serial.print(F("The SARA is not yet connected to an operator. Please use the previous examples to connect. Or wait and retry. Freezing..."));
96+
Serial.print(F("The module is not yet connected to an operator. Please use the previous examples to connect. Or wait and retry. Freezing..."));
9797
while (1)
9898
; // Do nothing more
9999
}
@@ -136,5 +136,5 @@ void loop()
136136
}
137137
}
138138

139-
myModule.poll(); // Keep processing data from the SARA so we can catch the Ping result
139+
myModule.poll(); // Keep processing data from the module so we can catch the Ping result
140140
}

examples/Example5_ReceiveSMS/Example5_ReceiveSMS.ino

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
// Uncomment the module you're using. If your module is not listed below, then
88
// it's not supported for this example
99
UBX_CELL myModule; // This example works with all modules, so the base class can be used
10-
// UBX_CELL myModule; // Base SARA-R5 class
11-
// UBX_CELL00S myModule;
12-
// UBX_CELL00S_01B myModule;
13-
// UBX_CELL00S_61B myModule;
14-
// UBX_CELL10M8S_61B myModule;
15-
// UBX_CELL10S myModule;
10+
// SARA_R5 myModule; // Base SARA-R5 class
11+
// SARA_R500S myModule;
12+
// SARA_R500S_01B myModule;
13+
// SARA_R500S_61B myModule;
14+
// SARA_R510M8S_61B myModule;
15+
// SARA_R510S myModule;
1616
// LARA_R6 myModule; // Base LARA-R6 class
1717
// LARA_R6001 myModule;
1818
// LARA_R6001D myModule;
@@ -65,7 +65,7 @@ void setup()
6565
}
6666
else
6767
{
68-
Serial.print(F("The SARA is not yet connected to an operator. Please use the previous examples to connect. Or wait and retry. Freezing..."));
68+
Serial.print(F("The module is not yet connected to an operator. Please use the previous examples to connect. Or wait and retry. Freezing..."));
6969
while (1)
7070
; // Do nothing more
7171
}

examples/Example6_SendSMS/Example6_SendSMS.ino

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
// Uncomment the module you're using. If your module is not listed below, then
88
// it's not supported for this example
99
UBX_CELL myModule; // This example works with all modules, so the base class can be used
10-
// UBX_CELL myModule; // Base SARA-R5 class
11-
// UBX_CELL00S myModule;
12-
// UBX_CELL00S_01B myModule;
13-
// UBX_CELL00S_61B myModule;
14-
// UBX_CELL10M8S_61B myModule;
15-
// UBX_CELL10S myModule;
10+
// SARA_R5 myModule; // Base SARA-R5 class
11+
// SARA_R500S myModule;
12+
// SARA_R500S_01B myModule;
13+
// SARA_R500S_61B myModule;
14+
// SARA_R510M8S_61B myModule;
15+
// SARA_R510S myModule;
1616
// LARA_R6 myModule; // Base LARA-R6 class
1717
// LARA_R6001 myModule;
1818
// LARA_R6001D myModule;
@@ -65,7 +65,7 @@ void setup()
6565
}
6666
else
6767
{
68-
Serial.print(F("The SARA is not yet connected to an operator. Please use the previous examples to connect. Or wait and retry. Freezing..."));
68+
Serial.print(F("The module is not yet connected to an operator. Please use the previous examples to connect. Or wait and retry. Freezing..."));
6969
while (1)
7070
; // Do nothing more
7171
}

examples/Example7_Clock/Example7_Clock.ino

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
// Uncomment the module you're using. If your module is not listed below, then
88
// it's not supported for this example
99
UBX_CELL myModule; // This example works with all modules, so the base class can be used
10-
// UBX_CELL myModule; // Base SARA-R5 class
11-
// UBX_CELL00S myModule;
12-
// UBX_CELL00S_01B myModule;
13-
// UBX_CELL00S_61B myModule;
14-
// UBX_CELL10M8S_61B myModule;
15-
// UBX_CELL10S myModule;
10+
// SARA_R5 myModule; // Base SARA-R5 class
11+
// SARA_R500S myModule;
12+
// SARA_R500S_01B myModule;
13+
// SARA_R500S_61B myModule;
14+
// SARA_R510M8S_61B myModule;
15+
// SARA_R510S myModule;
1616
// LARA_R6 myModule; // Base LARA-R6 class
1717
// LARA_R6001 myModule;
1818
// LARA_R6001D myModule;

0 commit comments

Comments
 (0)