Fixed bad reference and added not implemented

This commit is contained in:
Adrian Cervera Andes
2020-04-30 16:49:45 +02:00
parent 868e2bedf9
commit 5fbd80b3b2
6 changed files with 13 additions and 1 deletions

View File

@@ -66,7 +66,7 @@ class TinyGsmModem {
return thisModem().sleepEnableImpl(enable);
}
bool setPhoneFunctionality(uint8_t fun, bool reset = false) {
return thisModem().setPhoneFunctionality(fun, reset);
return thisModem().setPhoneFunctionalityImpl(fun, reset);
}
/*
@@ -174,6 +174,8 @@ class TinyGsmModem {
bool sleepEnableImpl(bool enable = true) TINY_GSM_ATTR_NOT_IMPLEMENTED;
bool setPhoneFunctionalityImpl(uint8_t fun, bool reset = false) TINY_GSM_ATTR_NOT_IMPLEMENTED;
/*
* Generic network functions
*/