Skip to content

Commit 5dd40a1

Browse files
committed
Additional Access Technologies for LARA-R6
1 parent 1eb7eed commit 5dd40a1

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
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
}

0 commit comments

Comments
 (0)