Base class for the ublox-xxx-cellular-xxx classes. Cannot be used standalone, only inherited by classes that do properly useful stuff. Or, to put it another way, if you are using any of the ublox-xxx-cellular-xxx classes, you will need this class also.

Dependents:   example-ublox-cellular-interface example-ublox-cellular-driver-gen HelloMQTT example-ublox-cellular-interface_r410M ... more

Files at this revision

API Documentation at this revision

Comitter:
qasim-ublox
Date:
Wed Sep 04 16:29:43 2019 +0500
Parent:
31:b0a6a610d114
Child:
33:8e1e79259b3f
Child:
34:d239824bfb8f
Commit message:
Bug solved in get_band_bitmask method

Changed in this revision

UbloxCellularBase.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/UbloxCellularBase.cpp	Thu Aug 29 16:52:05 2019 +0500
+++ b/UbloxCellularBase.cpp	Wed Sep 04 16:29:43 2019 +0500
@@ -1549,7 +1549,7 @@
 
     LOCK();
 
-    if(_at->send("AT+UBANDMASK?") && _at->recv("+UBANDMASK: %d,%llu,%d,%llu", &eBandMastRat0, m1_bitmask, &eBandMastRat1, nb1_bitmask) && _at->recv("OK")) {
+    if(_at->send("AT+UBANDMASK?") && _at->recv("+UBANDMASK: %d,%llu,%d,%llu\nOK\n", &eBandMastRat0, m1_bitmask, &eBandMastRat1, nb1_bitmask)) {
 
         status = true;
     }