Browse Source

Minor changes to Quectel ordering

v_master
Sara Damiano 5 years ago
parent
commit
286df108ac
7 changed files with 34 additions and 20 deletions
  1. +1
    -1
      .github/ISSUE_TEMPLATE.md
  2. +3
    -0
      .gitignore
  3. +1
    -1
      library.json
  4. +1
    -1
      library.properties
  5. +13
    -8
      src/TinyGsmClientM95.h
  6. +14
    -8
      src/TinyGsmClientMC60.h
  7. +1
    -1
      src/TinyGsmCommon.h

+ 1
- 1
.github/ISSUE_TEMPLATE.md View File

@ -23,7 +23,7 @@ with your board before submitting any issues.
Main processor board: <!-- Uno, Zero, ESP32, Particle, etc --> Main processor board: <!-- Uno, Zero, ESP32, Particle, etc -->
Modem: <!-- Brand, model, variant, firmware version --> Modem: <!-- Brand, model, variant, firmware version -->
TinyGSM version: <!-- always try to use the latest (0.9.10) -->
TinyGSM version: <!-- always try to use the latest (0.9.11) -->
Code: <!-- Example name or paste in your code --> Code: <!-- Example name or paste in your code -->
### Scenario, steps to reproduce ### Scenario, steps to reproduce


+ 3
- 0
.gitignore View File

@ -22,6 +22,9 @@
platformio.ini platformio.ini
lib/readme.txt lib/readme.txt
include/readme.txt include/readme.txt
.atomrc.cson
# VSCode
.vscode/* .vscode/*
.vscode/.browse.c_cpp.db* .vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json .vscode/c_cpp_properties.json


+ 1
- 1
library.json View File

@ -1,6 +1,6 @@
{ {
"name": "TinyGSM", "name": "TinyGSM",
"version": "0.9.10",
"version": "0.9.11",
"description": "A small Arduino library for GPRS modules, that just works. Includes examples for Blynk, MQTT, File Download, and Web Client. Supports many GSM, LTE, and WiFi modules with AT command interfaces.", "description": "A small Arduino library for GPRS modules, that just works. Includes examples for Blynk, MQTT, File Download, and Web Client. Supports many GSM, LTE, and WiFi modules with AT command interfaces.",
"keywords": "GSM, AT commands, AT, SIM800, SIM900, A6, A7, M590, ESP8266, SIM7000, SIM800A, SIM800C, SIM800L, SIM800H, SIM808, SIM868, SIM900A, SIM900D, SIM908, SIM968, M95, MC60, MC60E, BG96, ublox, Quectel, SIMCOM, AI Thinker, LTE, LTE-M", "keywords": "GSM, AT commands, AT, SIM800, SIM900, A6, A7, M590, ESP8266, SIM7000, SIM800A, SIM800C, SIM800L, SIM800H, SIM808, SIM868, SIM900A, SIM900D, SIM908, SIM968, M95, MC60, MC60E, BG96, ublox, Quectel, SIMCOM, AI Thinker, LTE, LTE-M",
"authors": "authors":


+ 1
- 1
library.properties View File

@ -1,5 +1,5 @@
name=TinyGSM name=TinyGSM
version=0.9.10
version=0.9.11
author=Volodymyr Shymanskyy author=Volodymyr Shymanskyy
maintainer=Volodymyr Shymanskyy maintainer=Volodymyr Shymanskyy
sentence=A small Arduino library for GPRS modules, that just works. sentence=A small Arduino library for GPRS modules, that just works.


+ 13
- 8
src/TinyGsmClientM95.h View File

@ -348,18 +348,17 @@ TINY_GSM_MODEM_WAIT_FOR_NETWORK()
//Activate GPRS/CSD Context //Activate GPRS/CSD Context
sendAT(GF("+QIACT")); sendAT(GF("+QIACT"));
if (waitResponse(10000) != 1) {
if (waitResponse(60000L) != 1) {
return false; return false;
} }
// Select TCP/IP transfer mode
sendAT(GF("+QIMODE=0"));
if (waitResponse() != 1) {
// Check that we have a local IP address
if (localIP() == IPAddress(0,0,0,0)) {
return false; return false;
} }
//Enable multiple TCP/IP connections
sendAT(GF("+QIMUX=1"));
//Set Method to Handle Received TCP/IP Data - Retrieve Data by Command
sendAT(GF("+QINDI=1"));
if (waitResponse() != 1) { if (waitResponse() != 1) {
return false; return false;
} }
@ -370,8 +369,14 @@ TINY_GSM_MODEM_WAIT_FOR_NETWORK()
return false; return false;
} }
//Set Method to Handle Received TCP/IP Data - Retrieve Data by Command
sendAT(GF("+QINDI=1"));
// Select TCP/IP transfer mode - NOT transparent mode
sendAT(GF("+QIMODE=0"));
if (waitResponse() != 1) {
return false;
}
//Enable multiple TCP/IP connections
sendAT(GF("+QIMUX=1"));
if (waitResponse() != 1) { if (waitResponse() != 1) {
return false; return false;
} }


+ 14
- 8
src/TinyGsmClientMC60.h View File

@ -364,8 +364,13 @@ TINY_GSM_MODEM_WAIT_FOR_NETWORK()
return false; return false;
} }
//Enable multiple TCP/IP connections
sendAT(GF("+QIMUX=1"));
// Check that we have a local IP address
if (localIP() == IPAddress(0,0,0,0)) {
return false;
}
//Set Method to Handle Received TCP/IP Data - Retrieve Data by Command
sendAT(GF("+QINDI=1"));
if (waitResponse() != 1) { if (waitResponse() != 1) {
return false; return false;
} }
@ -376,18 +381,19 @@ TINY_GSM_MODEM_WAIT_FOR_NETWORK()
return false; return false;
} }
//Set Method to Handle Received TCP/IP Data - Retrieve Data by Command
sendAT(GF("+QINDI=1"));
// Select TCP/IP transfer mode - NOT transparent mode
sendAT(GF("+QIMODE=0"));
if (waitResponse() != 1) { if (waitResponse() != 1) {
return false; return false;
} }
// Check that we have a local IP address
if (localIP() != IPAddress(0,0,0,0)) {
return true;
//Enable multiple TCP/IP connections
sendAT(GF("+QIMUX=1"));
if (waitResponse() != 1) {
return false;
} }
return false;
return true;
} }
bool gprsDisconnect() { bool gprsDisconnect() {


+ 1
- 1
src/TinyGsmCommon.h View File

@ -10,7 +10,7 @@
#define TinyGsmCommon_h #define TinyGsmCommon_h
// The current library version number // The current library version number
#define TINYGSM_VERSION "0.9.10"
#define TINYGSM_VERSION "0.9.11"
#if defined(SPARK) || defined(PARTICLE) #if defined(SPARK) || defined(PARTICLE)
#include "Particle.h" #include "Particle.h"


Loading…
Cancel
Save