Browse Source

Increased maintain to not miss closed at slow bauds

v_master
SRGDamia1 7 years ago
parent
commit
edcbc5459d
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      src/TinyGsmClientA6.h
  2. +1
    -1
      src/TinyGsmClientESP8266.h
  3. +1
    -1
      src/TinyGsmClientM590.h
  4. +1
    -1
      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(10, NULL, NULL);
waitResponse(50, NULL, NULL);
//}
}


+ 1
- 1
src/TinyGsmClientESP8266.h View File

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


+ 1
- 1
src/TinyGsmClientM590.h View File

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


+ 1
- 1
src/TinyGsmClientSIM800.h View File

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


+ 1
- 1
src/TinyGsmClientU201.h View File

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


Loading…
Cancel
Save