Skip to content

Commit 22e738f

Browse files
authored
Merge pull request #35 from sparkfun/release_candidate
v1.1.8
2 parents bc6c50f + 3734e91 commit 22e738f

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

examples/SARA-R5_Example4_RegisterOperator/SARA-R5_Example4_RegisterOperator.ino

+11-2
Original file line numberDiff line numberDiff line change
@@ -349,11 +349,20 @@ void printOperators(struct operator_stats * ops, int operatorsAvailable)
349349
}
350350
switch (ops[i].act)
351351
{
352-
// SARA-R5 only supports LTE
352+
case 0:
353+
Serial.print(F(" - GSM"));
354+
break;
355+
case 2:
356+
Serial.print(F(" - UTRAN"));
357+
break;
358+
case 3:
359+
Serial.print(F(" - GSM/GPRS with EDGE"));
360+
break;
353361
case 7:
354-
Serial.print(F(" - LTE"));
362+
Serial.print(F(" - LTE")); // SARA-R5 only supports LTE
355363
break;
356364
}
365+
Serial.println();
357366
}
358367
Serial.println();
359368
}

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SparkFun u-blox SARA-R5 Arduino Library
2-
version=1.1.7
2+
version=1.1.8
33
author=SparkFun Electronics <[email protected]>
44
maintainer=SparkFun Electronics <sparkfun.com>
55
sentence=Library for the u-blox SARA-R5 LTE-M / NB-IoT modules with secure cloud<br/><br/>

src/SparkFun_u-blox_SARA-R5_Arduino_Library.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1024,7 +1024,7 @@ class SARA_R5 : public Print
10241024
SARA_R5_error_t sendCustomCommandWithResponse(const char *command, const char *expectedResponse,
10251025
char *responseDest, unsigned long commandTimeout = SARA_R5_STANDARD_RESPONSE_TIMEOUT, bool at = true);
10261026

1027-
private:
1027+
protected:
10281028
HardwareSerial *_hardSerial;
10291029
#ifdef SARA_R5_SOFTWARE_SERIAL_ENABLED
10301030
SoftwareSerial *_softSerial;

0 commit comments

Comments
 (0)