Checking CEREG for ublox LTE-M
This commit is contained in:
		@@ -444,9 +444,16 @@ public:
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  RegStatus getRegistrationStatus() {
 | 
					  RegStatus getRegistrationStatus() {
 | 
				
			||||||
    sendAT(GF("+CGREG?"));
 | 
					
 | 
				
			||||||
    if (waitResponse(GF(GSM_NL "+CGREG:")) != 1) {
 | 
					    if (isCatM) {  // Check EPS registration for LTE modules
 | 
				
			||||||
      return REG_UNKNOWN;
 | 
					      sendAT(GF("+CEREG?"));
 | 
				
			||||||
 | 
					      if (waitResponse(GF(GSM_NL "+CEREG:")) != 1) {
 | 
				
			||||||
 | 
					        return REG_UNKNOWN;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    else {
 | 
				
			||||||
 | 
					      sendAT(GF("+CGREG?"));  // Check GPRS registration for others
 | 
				
			||||||
 | 
					      if (waitResponse(GF(GSM_NL "+CGREG:")) != 1) {
 | 
				
			||||||
 | 
					        return REG_UNKNOWN;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    streamSkipUntil(','); // Skip format (0)
 | 
					    streamSkipUntil(','); // Skip format (0)
 | 
				
			||||||
    int status = stream.readStringUntil('\n').toInt();
 | 
					    int status = stream.readStringUntil('\n').toInt();
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user