From 68a03b3ba0a3f0baa58d6977637ecfbfcad1d5cd Mon Sep 17 00:00:00 2001 From: Sara Damiano Date: Thu, 29 Apr 2021 12:37:11 -0400 Subject: [PATCH] Add (unused) argument for XBee modem get connected Signed-off-by: Sara Damiano --- src/TinyGsmClientXBee.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TinyGsmClientXBee.h b/src/TinyGsmClientXBee.h index a360631..db75084 100644 --- a/src/TinyGsmClientXBee.h +++ b/src/TinyGsmClientXBee.h @@ -1129,7 +1129,7 @@ class TinyGsmXBee : public TinyGsmModem, // after data has been sent on the socket. If it returns 0xFF the socket may // really be open, but no data has yet been sent. We return this unknown // value as true so there's a possibility it's wrong. - bool modemGetConnected() { + bool modemGetConnected(uint8_t) { // If the IP address is 0, it's not valid so we can't be connected if (savedIP == IPAddress(0, 0, 0, 0)) { return false; }