Browse Source

re-shortened maintain

problem was new lines, not time.
v_master
SRGDamia1 7 years ago
parent
commit
f899aeb126
5 changed files with 6 additions and 6 deletions
  1. +1
    -1
      src/TinyGsmClientA6.h
  2. +1
    -1
      src/TinyGsmClientESP8266.h
  3. +1
    -1
      src/TinyGsmClientM590.h
  4. +2
    -2
      src/TinyGsmClientSIM800.h
  5. +1
    -1
      src/TinyGsmClientU201.h

+ 1
- 1
src/TinyGsmClientA6.h View File

@ -217,7 +217,7 @@ public:
void maintain() {
//while (stream.available()) {
waitResponse(50, NULL, NULL);
waitResponse(10, NULL, NULL);
//}
}


+ 1
- 1
src/TinyGsmClientESP8266.h View File

@ -209,7 +209,7 @@ public:
}
void maintain() {
waitResponse(50, NULL, NULL);
waitResponse(10, NULL, NULL);
}
bool factoryDefault() {


+ 1
- 1
src/TinyGsmClientM590.h View File

@ -213,7 +213,7 @@ public:
void maintain() {
//while (stream.available()) {
waitResponse(50, NULL, NULL);
waitResponse(10, NULL, NULL);
//}
}


+ 2
- 2
src/TinyGsmClientSIM800.h View File

@ -253,7 +253,7 @@ public:
}
}
while (stream.available()) {
waitResponse(50, NULL, NULL);
waitResponse(10, NULL, NULL);
}
}
@ -467,7 +467,7 @@ public:
sendAT(GF("+CGACT=1,1"));
waitResponse(60000L);
// Open a the definied bearer context
// Open the definied GPRS bearer context
sendAT(GF("+SAPBR=1,1"));
waitResponse(85000L);
// Query the GPRS bearer context status


+ 1
- 1
src/TinyGsmClientU201.h View File

@ -247,7 +247,7 @@ public:
}
}
while (stream.available()) {
waitResponse(50, NULL, NULL);
waitResponse(10, NULL, NULL);
}
}


Loading…
Cancel
Save