Skip to content

Commit dd05a90

Browse files
committed
MCU8MASS-2405 Rename LTE modem to modem as we support NB-IoT as well now
1 parent a4f6a90 commit dd05a90

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

examples/gps_tracker/gps_tracker.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ void setup() {
193193
Log.info(F("Starting AVR-IoT Cellular Adafruit GPS example"));
194194

195195
// We configure the low power module for power down configuration, where
196-
// the LTE modem and the CPU will be powered down
196+
// the modem and the CPU will be powered down
197197
LowPower.configurePowerDown();
198198

199199
// Make sure sensors are turned off

examples/http/http.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ void setup() {
1717
Log.begin(115200);
1818
Log.info(F("Starting HTTP example"));
1919

20-
// Start LTE modem and connect to the operator
20+
// Start modem and connect to the operator
2121
if (!Lte.begin()) {
2222
Log.error(F("Failed to connect to the operator"));
2323
return;

examples/http_get_time/http_get_time.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void setup() {
2828
Log.begin(115200);
2929
Log.info(F("Starting HTTP Get Time Example\r\n"));
3030

31-
// Start LTE modem and connect to the operator
31+
// Start modem and connect to the operator
3232
if (!Lte.begin()) {
3333
Log.error(F("Failed to connect to operator"));
3434
return;

examples/https/https.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ void setup() {
1717
Log.begin(115200);
1818
Log.info(F("Starting HTTPS example"));
1919

20-
// Start LTE modem and connect to the operator
20+
// Start modem and connect to the operator
2121
if (!Lte.begin()) {
2222
Log.error(F("Failed to connect to the operator"));
2323
return;

examples/https_with_header/https_with_header.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ void setup() {
1818
Log.begin(115200);
1919
Log.info(F("Starting HTTPS with header example"));
2020

21-
// Start LTE modem and connect to the operator
21+
// Start modem and connect to the operator
2222
if (!Lte.begin()) {
2323
Log.error(F("Failed to connect to the operator"));
2424
return;

examples/sandbox/sandbox.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ void connectLTE() {
119119

120120
Lte.onDisconnect(disconnectedFromNetwork);
121121

122-
// Start LTE modem and wait until we are connected to the operator.
122+
// Start modem and wait until we are connected to the operator.
123123
// If initialization fails, we just retry in the loop
124124
while (!Lte.begin()) {}
125125

examples/sms/sms.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ void setup() {
4141
return;
4242
}
4343

44-
// --- Start LTE modem and connect to the operator ---
44+
// --- Start modem and connect to the operator ---
4545
if (!Lte.begin()) {
4646
Log.error(F("Failed to connect to the operator"));
4747
return;

src/led_ctrl.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class LedCtrlClass {
2020
/**
2121
* @brief Singleton instance.
2222
*/
23-
static LedCtrlClass &instance(void) {
23+
static LedCtrlClass& instance(void) {
2424
static LedCtrlClass instance;
2525
return instance;
2626
}
@@ -29,14 +29,14 @@ class LedCtrlClass {
2929
* @brief Starts the LED control module.
3030
*
3131
* @param manual_control Set to true if the system should *not* modify the
32-
* leds automatically (for example when the LTE modem is connected).
32+
* leds automatically (for example when the modem is connected).
3333
*/
3434
void begin();
3535

3636
/**
3737
* @brief Start the LED control module in manual mode. In manual mode, the
3838
* system should *not* modify the LEDs automatically (for example when the
39-
* LTE modem is connected).
39+
* modem is connected).
4040
*
4141
*/
4242
void beginManual();

src/mqtt_client.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class MqttClientClass {
4242
* is utilised, the modem will wake up every @p keep_alive to ping the
4343
* broker regardless of the sleeping time.
4444
* @param use_ecc Optional: Whether to use the ECC for signing messages. If
45-
* not used, the private key has to be stored on the LTE modem and the
45+
* not used, the private key has to be stored on the modem and the
4646
* security profile has to be be set up to not use external hardware
4747
* cryptographic engine.
4848
* @param username Optional: Username for authentication.

src/sequans_controller.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -502,19 +502,19 @@ bool SequansControllerClass::begin(void) {
502502
pinConfigure(RX_PIN, PIN_DIR_INPUT | PIN_INPUT_ENABLE);
503503

504504
// Request to send (RTS) and clear to send (CTS) are the control lines
505-
// on the UART line. From the configuration the MCU and the LTE modem is
505+
// on the UART line. From the configuration the MCU and the modem is
506506
// in, we control the RTS line from the MCU to signalize if we can
507-
// process more data or not from the LTE modem. The CTS line is
508-
// controlled from the LTE modem and gives us the ability to know
509-
// whether the LTE modem can receive more data or if we have to wait.
507+
// process more data or not from the modem. The CTS line is
508+
// controlled from the modem and gives us the ability to know
509+
// whether the modem can receive more data or if we have to wait.
510510
//
511511
// Both pins are active low.
512512

513513
pinConfigure(RTS_PIN, PIN_DIR_OUTPUT | PIN_INPUT_ENABLE);
514514
digitalWrite(RTS_PIN, HIGH);
515515

516516
// Clear to send is input and we want interrupts on both edges to know
517-
// when the LTE modem has changed the state of the line.
517+
// when the modem has changed the state of the line.
518518
pinConfigure(CTS_PIN,
519519
PIN_DIR_INPUT | PIN_PULLUP_ON | PIN_INT_CHANGE |
520520
PIN_INPUT_ENABLE);

0 commit comments

Comments
 (0)