Fix build test

This commit is contained in:
Volodymyr Shymanskyy
2017-09-11 09:37:59 +03:00
parent 8511ec054c
commit c205fe0a3f
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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