Browse Source

Fix build test

v_master
Volodymyr Shymanskyy 7 years ago
parent
commit
c205fe0a3f
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      TinyGsmClientA6.h
  2. +1
    -1
      TinyGsmClientM590.h
  3. +1
    -1
      TinyGsmClientSIM800.h

+ 1
- 1
TinyGsmClientA6.h View File

@ -406,7 +406,7 @@ public:
return waitResponse() == 1;
}
void callRedial() {
bool callRedial() {
sendAT(GF("DLST"));
return waitResponse() == 1;
}


+ 1
- 1
TinyGsmClientM590.h View File

@ -405,7 +405,7 @@ public:
return waitResponse() == 1;
}
void callRedial() TINY_GSM_ATTR_NOT_AVAILABLE;
bool callRedial() TINY_GSM_ATTR_NOT_AVAILABLE;
bool callHangup(const String& number) {
sendAT(GF("H"), number);


+ 1
- 1
TinyGsmClientSIM800.h View File

@ -498,7 +498,7 @@ public:
return waitResponse() == 1;
}
void callRedial() {
bool callRedial() {
sendAT(GF("DL"));
return waitResponse() == 1;
}


Loading…
Cancel
Save