From 242e8e9d43cb4d7e9ddc6852152efa7c2e243fdf Mon Sep 17 00:00:00 2001 From: Emil Muratov Date: Tue, 2 May 2023 17:42:31 +0900 Subject: fix building for esp32 core 2.0.8 __FlashStringHelper class is abstract, so use String& instead --- FTPClient.cpp | 2 +- FTPClient.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FTPClient.cpp b/FTPClient.cpp index 4ea31be..dd3457c 100644 --- a/FTPClient.cpp +++ b/FTPClient.cpp @@ -220,7 +220,7 @@ int8_t FTPClient::controlConnect() return -1; } -bool FTPClient::waitFor(const int16_t respCode, const __FlashStringHelper *errorString, uint32_t timeOutMs) +bool FTPClient::waitFor(const int16_t respCode, const String &errorString, uint32_t timeOutMs) { // initalize waiting if (!aTimeout.canExpire()) diff --git a/FTPClient.h b/FTPClient.h index 05a1bf3..228d975 100644 --- a/FTPClient.h +++ b/FTPClient.h @@ -110,7 +110,7 @@ protected: int8_t controlConnect(); // connects to ServerInfo, returns -1: no connection possible, +1: connection established - bool waitFor(const int16_t respCode, const __FlashStringHelper *errorString = nullptr, uint32_t timeOut = 10000); + bool waitFor(const int16_t respCode, const String &errorString = (const char*)NULL, uint32_t timeOut = 10000); }; #endif // FTP_CLIENT_H -- cgit v1.2.3